bitwarden-estensione-browser/src/app/vault/ciphers.component.ts

16 lines
457 B
TypeScript
Raw Normal View History

import { Component } from '@angular/core';
2018-01-24 04:21:14 +01:00
2018-01-26 21:44:02 +01:00
import { CipherService } from 'jslib/abstractions/cipher.service';
import { CiphersComponent as BaseCiphersComponent } from 'jslib/angular/components/ciphers.component';
2018-02-08 16:37:54 +01:00
2018-01-24 04:21:14 +01:00
@Component({
selector: 'app-vault-ciphers',
templateUrl: 'ciphers.component.html',
2018-01-24 04:21:14 +01:00
})
export class CiphersComponent extends BaseCiphersComponent {
constructor(cipherService: CipherService) {
super(cipherService);
}
2018-01-24 04:21:14 +01:00
}