mirror of
https://gitcode.com/github-mirrors/react-native-update-cli.git
synced 2025-09-16 01:41:37 +08:00
23 lines
340 B
TypeScript
23 lines
340 B
TypeScript
declare global {
|
|
var NO_INTERACTIVE: boolean;
|
|
var USE_ACC_OSS: boolean;
|
|
}
|
|
|
|
export interface Session {
|
|
token: string;
|
|
}
|
|
|
|
export type Platform = 'ios' | 'android' | 'harmony';
|
|
|
|
export interface Package {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface Version {
|
|
id: string;
|
|
hash: string;
|
|
name: string;
|
|
packages?: Package[];
|
|
}
|