15f8afa4bf
Moves the public api .d.ts files from tools/public_api_guard to goldens/public-api. Additionally, provides a README in the goldens directory and a script assist in testing the current state of the repo against the goldens as well as a command for accepting all changes to the goldens in a single command. PR Close #35768
25 lines
885 B
TypeScript
25 lines
885 B
TypeScript
/** @deprecated */
|
|
export declare class UpgradeAdapter {
|
|
constructor(ng2AppModule: Type<any>, compilerOptions?: CompilerOptions | undefined);
|
|
bootstrap(element: Element, modules?: any[], config?: IAngularBootstrapConfig): UpgradeAdapterRef;
|
|
downgradeNg2Component(component: Type<any>): Function;
|
|
downgradeNg2Provider(token: any): Function;
|
|
registerForNg1Tests(modules?: string[]): UpgradeAdapterRef;
|
|
upgradeNg1Component(name: string): Type<any>;
|
|
upgradeNg1Provider(name: string, options?: {
|
|
asToken: any;
|
|
}): void;
|
|
}
|
|
|
|
/** @deprecated */
|
|
export declare class UpgradeAdapterRef {
|
|
ng1Injector: IInjectorService;
|
|
ng1RootScope: IRootScopeService;
|
|
ng2Injector: Injector;
|
|
ng2ModuleRef: NgModuleRef<any>;
|
|
dispose(): void;
|
|
ready(fn: (upgradeAdapterRef: UpgradeAdapterRef) => void): void;
|
|
}
|
|
|
|
export declare const VERSION: Version;
|