mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
New API methods and cipher Deleted Date property, plus search expansion to toggle on deleted flag.
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
export class CipherBulkRestoreRequest {
|
|
ids: string[];
|
|
|
|
constructor(ids: string[]) {
|
|
this.ids = ids == null ? [] : ids;
|
|
}
|
|
}
|