@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
17 lines (16 loc) • 395 B
TypeScript
export type VelcronOnPressEvent = {
onPress?: Array<string>;
};
export type VelcronOnLoadEvent = {
onLoaded?: Array<string>;
};
export type VelcronOnChangedEvent = {
onChanged?: Array<string>;
};
export type VelcronOnCloseRequestedEvent = {
onCloseRequested?: Array<string>;
};
export type VelcronOnClosedEvent = {
onClosed?: Array<string>;
};
export type VelcronEvent = {};