123456789101112131415161718 |
- export interface ShowExtendModalParams {
- cells: {
- image: string;
- title: string;
- content: string;
- }[];
- buttonLabels: string[];
- }
- declare function showExtendModal(args: ShowExtendModalParams): Promise<{
- buttonIndex: number;
- }>;
- declare namespace showExtendModal {
- var version: {
- android: string;
- ios: string;
- };
- }
- export default showExtendModal;
|