forked from revopush/code-push-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
36 lines (31 loc) · 653 Bytes
/
Copy pathtypes.ts
File metadata and controls
36 lines (31 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export {
AccessKeyRequest,
Account,
App,
CollaboratorMap,
CollaboratorProperties,
Deployment,
DeploymentMetrics,
Package,
PackageInfo,
AccessKey as ServerAccessKey,
UpdateMetrics,
BaseRelease,
} from "../script/types/rest-definitions";
export interface CodePushError {
message: string;
statusCode: number;
}
export interface AccessKey {
createdTime: number;
expires: number;
name: string;
key?: string;
}
export interface Session {
loggedInTime: number;
machineName: string;
}
export type Headers = { [headerName: string]: string };