mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
Move CLI to apps/cli
This commit is contained in:
13
apps/cli/src/models/response/folderResponse.ts
Normal file
13
apps/cli/src/models/response/folderResponse.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user