1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

add more enums to jslib

This commit is contained in:
Kyle Spearrin
2018-01-06 14:27:30 -05:00
parent 415c56bc2c
commit 0f0b092ed7
4 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
export enum DeviceType {
Chrome = 2,
Firefox = 3,
Opera = 4,
Edge = 5,
Vivaldi = 19,
Safari = 20,
}

View File

@@ -0,0 +1,5 @@
export enum FieldType {
Text = 0,
Hidden = 1,
Boolean = 2,
}

View File

@@ -0,0 +1,3 @@
export enum SecureNoteType {
Generic = 0,
}