UNPKG

@lamantin/fastpush

Version:

Typed fastlane frontend for pushing builds to store

9 lines (8 loc) 317 B
import { Lane } from "../Lane"; export * from './gradle'; export * from './supply'; export declare type AndroidLane = { type: 'android'; } & Lane; export declare function android(lanes: AndroidLane[]): Promise<void>; export declare function android(lanes: AndroidLane[], projectDirectory: string): Promise<void>;