mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-17 10:45:41 +01:00
13 lines
256 B
TypeScript
13 lines
256 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { InputVerbatimDirective } from 'jslib/angular/directives/input-verbatim.directive';
|
|
|
|
@NgModule({
|
|
imports: [],
|
|
declarations: [
|
|
InputVerbatimDirective,
|
|
],
|
|
})
|
|
export class DummyModule {
|
|
}
|