UNPKG

@launchmenu/launcher

Version:
14 lines 335 B
/** The installer state */ export declare type IState<T = void> = { type: "configuring" | "loading" | "finished"; name: string; } | { type: "prompt"; text: string; buttons: { value: T; text: string; type: "primary" | "secondary"; }[]; }; //# sourceMappingURL=IState.d.ts.map