UNPKG

@grouparoo/core

Version:
29 lines (28 loc) 743 B
export declare type SetupStepDescription = { position?: number; key: string; title: string; description: string; href: string; cta: string; helpLink: string; showCtaOnCommunity?: boolean; check?: () => Promise<boolean>; outcome?: () => Promise<string>; disabled: () => Promise<boolean>; runModes: string[]; }; export declare const getSetupStepDescriptions: (modelId?: string) => { position: number; key: string; title: string; description: string; href: string; cta: string; helpLink: string; showCtaOnCommunity?: boolean; check?: () => Promise<boolean>; outcome?: () => Promise<string>; disabled: () => Promise<boolean>; runModes: string[]; }[];