UNPKG
@trimble-oss/trimble-id
Version:
1.0.1 release (1.0.1)
1.0.1rc.1 (1.0.1-rc.1)
latest (1.0.2)
next (1.0.2-rc.4)
1.0.2
1.0.2-rc.4
1.0.2-rc.3
1.0.2-rc.2
1.0.2-rc.1
1.0.1
1.0.1-rc.4
1.0.1-rc.3
1.0.1-rc.1
1.0.0
1.0.0-beta.1
0.0.8
0.0.7
0.0.7-a1
0.0.6
0.0.6-a1
0.0.5
0.0.5-a2
0.0.5-a1
0.0.4
0.0.4-rc.2
0.0.4-rc.1
0.0.3
0.0.3-rc.2
0.0.3-rc.1
0.0.2
0.0.2-rc.3
0.0.2-rc.2
0.0.2-rc.1
0.0.1
0.0.1-rc.3
0.0.1-rc.2
0.0.1-rc.1
Trimble Identity SDK for JavaScript/TypeScript
github.com/trimble-oss/trimble-id-sdk-docs-for-js
@trimble-oss/trimble-id
/
dist
/
types
/
interfaces
/
Keyset.d.ts
18 lines
(17 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** * Copyright (c) Trimble Inc. */
/** * Represents a keyset for token validation */
export interface Keyset { kty: string; n: string; e: string;
use
: string; x5c: string[]; x5t: string; kid: string; alg?: string;
[key: string]
: any; }