UNPKG

@quantumart/mobx-form-validation-kit

Version:
10 lines (9 loc) 263 B
declare type Method<T> = (sender: T) => void; export declare class Delegate<T> { private funcs; addListen: (method: Method<T>) => void; remove: (method: Method<T>) => void; call: (sender: T) => void; dispose: () => void; } export {};