Files
ionic-framework/src/components/typography/typography.module.ts

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: []
};
}
}