-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.tsx
18 lines (17 loc) · 881 Bytes
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
* A set of suites designed and implemented around events. Mainly, event definition, distribution, reception, and display of modal components can be performed. Users can customize events.
*/
export * from './types';
export * from './UikitEvents';
export * from './UikitModals';
// Send event specification:
// function EmitEventExample(): void {
// DeviceEventEmitter.emit('SheetEvent' as SheetEventType, {
// _internal: 'uikit', // Internal use only to prevent event conflicts.
// type: 'contact' as UikitBizEventType,
// action: 'your_custom_action', // Custom behavior. For example, add contacts and create groups.
// senderId: 'xxx', // Generally, it is the page name or component name to facilitate subsequent search.
// timestamp: 0, // The timestamp at which the event occurred.
// params: 'your_custom_params', // Custom data.
// });
// }