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