UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

11 lines (10 loc) 261 B
/** * Separator object * Used to space/separate choices group */ export declare class Separator { readonly separator: string; readonly type: string; constructor(separator?: string); static isSeparator(choice: unknown): choice is Separator; }