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);
|
||
|
}
|
||
|
}
|