mirror of
https://github.com/bitwarden/jslib
synced 2025-12-15 07:43:45 +00:00
add more enums to jslib
This commit is contained in:
8
src/enums/deviceType.enum.ts
Normal file
8
src/enums/deviceType.enum.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
export enum DeviceType {
|
||||||
|
Chrome = 2,
|
||||||
|
Firefox = 3,
|
||||||
|
Opera = 4,
|
||||||
|
Edge = 5,
|
||||||
|
Vivaldi = 19,
|
||||||
|
Safari = 20,
|
||||||
|
}
|
||||||
5
src/enums/fieldType.enum.ts
Normal file
5
src/enums/fieldType.enum.ts
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
export enum FieldType {
|
||||||
|
Text = 0,
|
||||||
|
Hidden = 1,
|
||||||
|
Boolean = 2,
|
||||||
|
}
|
||||||
3
src/enums/secureNoteType.enum.ts
Normal file
3
src/enums/secureNoteType.enum.ts
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
export enum SecureNoteType {
|
||||||
|
Generic = 0,
|
||||||
|
}
|
||||||
@@ -1,2 +1,5 @@
|
|||||||
export { CipherType } from './enums/cipherType.enum';
|
export { CipherType } from './enums/cipherType.enum';
|
||||||
|
export { DeviceType } from './enums/deviceType.enum';
|
||||||
export { EncryptionType } from './enums/encryptionType.enum';
|
export { EncryptionType } from './enums/encryptionType.enum';
|
||||||
|
export { FieldType } from './enums/fieldType.enum';
|
||||||
|
export { SecureNoteType } from './enums/secureNoteType.enum';
|
||||||
|
|||||||
Reference in New Issue
Block a user