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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user