UNPKG

@lamantin/fastpush

Version:

Typed fastlane frontend for pushing builds to store

8 lines (7 loc) 411 B
import { Platform, platformTypes } from '../../utils/platform'; export declare type PlatformAtLeastOne = [typeof platformTypes[0]] | [typeof platformTypes[1]] | [typeof platformTypes[0], typeof platformTypes[1]]; /** * Assert input platforms and return array that contains at least 1 platform * @param platforms */ export declare function assertPlatforms(platforms: Platform[]): Promise<PlatformAtLeastOne>;