mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { TypographyDirective } from "./typography.directive";
|
|
|
|
@NgModule({
|
|
imports: [TypographyDirective],
|
|
exports: [TypographyDirective],
|
|
})
|
|
export class TypographyModule {}
|