UNPKG

nativescript

Version:

Command-line interface for building NativeScript projects

35 lines (29 loc) 907 B
import { IStringDictionary } from "../common/declarations"; interface IAppFilesHashes { appFilesHashes?: IStringDictionary; } interface IPrepareInfo extends IAddedNativePlatform, IAppFilesHashes { time?: string; bundle?: boolean; release?: boolean; projectFileHash?: string; changesRequireBuild?: boolean; changesRequireBuildTime?: string; iOSProvisioningProfileUUID?: string; } interface IProjectChangesInfo extends IAddedNativePlatform { appResourcesChanged: boolean; configChanged: boolean; nativeChanged: boolean; signingChanged: boolean; nsConfigChanged: boolean; readonly hasChanges: boolean; readonly changesRequireBuild: boolean; readonly changesRequirePrepare: boolean; } /** * NativePlatformStatus.requiresPlatformAdd | NativePlatformStatus.requiresPrepare | NativePlatformStatus.alreadyPrepared */ interface IAddedNativePlatform { nativePlatformStatus: "1" | "2" | "3"; }