UNPKG

@aurigma/design-atoms

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

6 lines (5 loc) 266 B
export interface ICompletableInputHandler { addOnCompleted(handler: (result: any) => any): any; removeOnCompleted(handler: (result: any) => any): any; } export declare function isCompletableInputHandler(object: any): object is ICompletableInputHandler;