mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
21 lines
327 B
TypeScript
21 lines
327 B
TypeScript
import { NgModule, ModuleWithProviders } from '@angular/core';
|
|
|
|
import { Note } from './note';
|
|
|
|
/** @hidden */
|
|
@NgModule({
|
|
declarations: [
|
|
Note
|
|
],
|
|
exports: [
|
|
Note
|
|
]
|
|
})
|
|
export class NoteModule {
|
|
public static forRoot(): ModuleWithProviders {
|
|
return {
|
|
ngModule: NoteModule, providers: []
|
|
};
|
|
}
|
|
}
|