mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { AnchorLinkDirective, ButtonLinkDirective } from "./link.directive";
|
|
|
|
@NgModule({
|
|
imports: [AnchorLinkDirective, ButtonLinkDirective],
|
|
exports: [AnchorLinkDirective, ButtonLinkDirective],
|
|
})
|
|
export class LinkModule {}
|