mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-03 13:33:32 +01:00
13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
|
||
|
import { SearchPipe } from 'jslib/angular/pipes/search.pipe';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [],
|
||
|
declarations: [
|
||
|
SearchPipe,
|
||
|
],
|
||
|
})
|
||
|
export class DummyModule {
|
||
|
}
|