mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
20 lines
318 B
TypeScript
20 lines
318 B
TypeScript
import { NgModule, ModuleWithProviders } from '@angular/core';
|
|
|
|
import { Label } from './label';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
Label
|
|
],
|
|
exports: [
|
|
Label
|
|
]
|
|
})
|
|
export class LabelModule {
|
|
public static forRoot(): ModuleWithProviders {
|
|
return {
|
|
ngModule: LabelModule, providers: []
|
|
};
|
|
}
|
|
}
|