mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
16 lines
457 B
TypeScript
16 lines
457 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { SearchService } from 'jslib/abstractions/search.service';
|
|
|
|
import { CiphersComponent as BaseCiphersComponent } from 'jslib/angular/components/ciphers.component';
|
|
|
|
@Component({
|
|
selector: 'app-vault-ciphers',
|
|
templateUrl: 'ciphers.component.html',
|
|
})
|
|
export class CiphersComponent extends BaseCiphersComponent {
|
|
constructor(searchService: SearchService) {
|
|
super(searchService);
|
|
}
|
|
}
|