Repository URL to install this package:
|
Version:
3.0.6-working.1 ▾
|
export * from '@skava/typings';
/**
* @see https://stackoverflow.com/a/39393254
*/
export declare type Class = {
new (...args: any[]): any;
};
/**
* Global Event Handler Interface
*/
export interface EventHandlerArg<Props = any, State = any, Item = any> {
props?: Props;
state?: State;
item?: Item;
event?: Event;
}