1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-06 04:23:19 +00:00

pretty print json

This commit is contained in:
Kyle Spearrin
2018-05-15 12:44:10 -04:00
parent 07cc64c0b8
commit 8e23842399
7 changed files with 50 additions and 35 deletions

View File

@@ -9,8 +9,9 @@ export class FolderResponse extends Folder implements BaseResponse {
id: string;
constructor(o: FolderView) {
super(o);
super();
this.object = 'folder';
this.id = o.id;
this.build(o);
}
}