diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-19 17:11:41 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-19 17:11:41 -0700 |
commit | 7017417e5d5229e6fb709b637135845d9428c868 (patch) | |
tree | 580f05f4e105a1a1eeb40548a080ae64b6158dc5 /src | |
parent | b8c923f9ad1e970664fdf3b420349d83f054f153 (diff) |
Remove some semicolons from types.ts
Diffstat (limited to 'src')
-rw-r--r-- | src/types.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types.ts b/src/types.ts index cccd755..58cc90c 100644 --- a/src/types.ts +++ b/src/types.ts @@ -40,7 +40,7 @@ export enum ATTESTATION_FORMATS { PACKED = 'packed', ANDROID_SAFETYNET = 'android-safetynet', NONE = 'none', -}; +} export type AttestationObject = { fmt: ATTESTATION_FORMATS, @@ -110,7 +110,7 @@ export enum COSEKEYS { y = -3, n = -1, e = -2, -}; +} export type COSEPublicKey = Map<COSEAlgorithmIdentifier, number | Buffer>; |