1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00
Files
browser/libs/components/src/typography/typography.module.ts
2023-02-03 10:32:29 +01:00

12 lines
302 B
TypeScript

import { CommonModule } from "@angular/common";
import { NgModule } from "@angular/core";
import { TypographyDirective } from "./typography.directive";
@NgModule({
imports: [CommonModule],
exports: [TypographyDirective],
declarations: [TypographyDirective],
})
export class TypographyModule {}