mirror of
https://github.com/bitwarden/browser
synced 2026-02-04 10:43:47 +00:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { BitInputDirective } from "./input.directive";
|
|
|
|
@NgModule({
|
|
imports: [BitInputDirective],
|
|
exports: [BitInputDirective],
|
|
})
|
|
export class InputModule {}
|