mirror of
https://github.com/bitwarden/jslib
synced 2025-12-21 02:33:37 +00:00
15 lines
360 B
TypeScript
15 lines
360 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { InputVerbatimDirective } from './directives/input-verbatim.directive';
|
|
import { TrueFalseValueDirective } from './directives/true-false-value.directive';
|
|
|
|
@NgModule({
|
|
imports: [],
|
|
declarations: [
|
|
InputVerbatimDirective,
|
|
TrueFalseValueDirective,
|
|
],
|
|
})
|
|
export class DummyModule {
|
|
}
|