UNPKG

325 BTypeScriptView Raw
1export default class BundleConfig {
2 private emberApp;
3 constructor(emberApp: any);
4 readonly names: ReadonlyArray<string>;
5 readonly types: ReadonlyArray<string>;
6 bundleEntrypoint(name: string, type: string): string | undefined;
7 bundleForPath(path: string): string;
8 readonly lazyChunkPath: string;
9}