UNPKG

@tinymce/beehive-flow

Version:

A CLI tool implementing the beehive flow git branching process

12 lines 503 B
import * as O from 'fp-ts/Option'; import * as BeehiveArgs from './BeehiveArgs'; declare type BeehiveArgs = BeehiveArgs.BeehiveArgs; declare type Option<A> = O.Option<A>; /** Removes the first two args, which are "node" and the script filename */ export declare const getRealArgs: () => string[]; export declare const parseArgs: (args: string[]) => Promise<Option<BeehiveArgs>>; export declare const parseProcessArgs: () => Promise<Option<BeehiveArgs>>; export {}; //# sourceMappingURL=Parser.d.ts.map