Files
hertzbeat/web-app/src/app/core/module-import-guard.ts
2021-11-27 22:21:52 +08:00

7 lines
269 B
TypeScript

// https://angular.io/guide/styleguide#style-04-12
export function throwIfAlreadyLoaded(parentModule: any, moduleName: string): void {
if (parentModule) {
throw new Error(`${moduleName} has already been loaded. Import Core modules in the AppModule only.`);
}
}