Closes #9729 BREAKING CHANGE: `Type` is now `Type<T>` which means that in most cases you have to use `Type<any>` in place of `Type`. We don't expect that any user applications use the `Type` type.
18 lines
635 B
TypeScript
18 lines
635 B
TypeScript
/** @experimental */
|
|
export declare const platformDynamicServer: (extraProviders?: any[]) => PlatformRef;
|
|
|
|
/** @experimental */
|
|
export declare const platformServer: (extraProviders?: any[]) => PlatformRef;
|
|
|
|
/** @deprecated */
|
|
export declare const SERVER_PLATFORM_PROVIDERS: Array<any>;
|
|
|
|
/** @deprecated */
|
|
export declare function serverBootstrap<T>(appComponentType: Type<T>, customProviders: Array<any>): Promise<ComponentRef<T>>;
|
|
|
|
/** @deprecated */
|
|
export declare const serverDynamicPlatform: (extraProviders?: any[]) => PlatformRef;
|
|
|
|
/** @deprecated */
|
|
export declare const serverPlatform: (extraProviders?: any[]) => PlatformRef;
|