mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-09 10:23:47 +08: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 {}
|