mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
16 lines
457 B
TypeScript
16 lines
457 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { CipherService } from 'jslib/abstractions/cipher.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(cipherService: CipherService) {
|
|
super(cipherService);
|
|
}
|
|
}
|