make enum a const.
This commit is contained in:
Родитель
5e7abc5f86
Коммит
773496ba74
|
@ -8,7 +8,7 @@ export declare class ExtractError extends Error {
|
|||
|
||||
export type ProfileType = "adhoc" | "enterprise" | "other";
|
||||
|
||||
export enum OperatingSystem {
|
||||
export declare const enum OperatingSystem {
|
||||
iOS,
|
||||
Android,
|
||||
Windows
|
||||
|
@ -45,7 +45,7 @@ export interface IPackageMetadata {
|
|||
hasProvisioning: boolean;
|
||||
}
|
||||
|
||||
export interface IpaMetadata extends IPackageMetadata {
|
||||
export interface IIpaMetadata extends IPackageMetadata {
|
||||
/** The IPA's provisioning profile. */
|
||||
provision: IProvisioningProfile;
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
export type ProfileType = "adhoc" | "enterprise" | "other";
|
||||
export enum OperatingSystem {
|
||||
export const enum OperatingSystem {
|
||||
iOS,
|
||||
Android,
|
||||
Windows
|
||||
|
|
Загрузка…
Ссылка в новой задаче