1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 03:23:50 +00:00

add missing types to models

This commit is contained in:
Kyle Spearrin
2017-11-13 16:21:45 -05:00
parent bed28aebaa
commit 4664c783f2
5 changed files with 17 additions and 7 deletions

View File

@@ -1,7 +1,9 @@
import { Folder } from '../domain/folder';
class FolderRequest {
name: string;
constructor(folder: any) { // TODO: folder type
constructor(folder: Folder) {
this.name = folder.name ? folder.name.encryptedString : null;
}
}