1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-06 04:23:19 +00:00
Files
cli/src/models/response/folderResponse.ts
Thomas Rittson f6c454c970 [PS-612] Update jslib (#531)
* Update Export model imports

* Update for authService.getAuthStatus refactor

* Update jslib
2022-05-16 11:58:36 +10:00

14 lines
424 B
TypeScript

import { FolderWithIdExport } from "jslib-common/models/export/folderWithIdExport";
import { FolderView } from "jslib-common/models/view/folderView";
import { BaseResponse } from "jslib-node/cli/models/response/baseResponse";
export class FolderResponse extends FolderWithIdExport implements BaseResponse {
object: string;
constructor(o: FolderView) {
super();
this.object = "folder";
this.build(o);
}
}