feat(linker): Allow configurable module prefixes and suffixes. (#11049)
This commit is contained in:

committed by
Victor Berchet

parent
bd510ccdbb
commit
8b782818f5
8
tools/public_api_guard/core/index.d.ts
vendored
8
tools/public_api_guard/core/index.d.ts
vendored
@ -1158,10 +1158,16 @@ export declare function style(tokens: string | {
|
||||
|
||||
/** @experimental */
|
||||
export declare class SystemJsNgModuleLoader implements NgModuleFactoryLoader {
|
||||
constructor(_compiler: Compiler);
|
||||
constructor(_compiler: Compiler, config?: SystemJsNgModuleLoaderConfig);
|
||||
load(path: string): Promise<NgModuleFactory<any>>;
|
||||
}
|
||||
|
||||
/** @experimental */
|
||||
export declare abstract class SystemJsNgModuleLoaderConfig {
|
||||
factoryPathPrefix: string;
|
||||
factoryPathSuffix: string;
|
||||
}
|
||||
|
||||
/** @stable */
|
||||
export declare abstract class TemplateRef<C> {
|
||||
elementRef: ElementRef;
|
||||
|
Reference in New Issue
Block a user