showExtendModal.d.ts 408 B

123456789101112131415161718
  1. export interface ShowExtendModalParams {
  2. cells: {
  3. image: string;
  4. title: string;
  5. content: string;
  6. }[];
  7. buttonLabels: string[];
  8. }
  9. declare function showExtendModal(args: ShowExtendModalParams): Promise<{
  10. buttonIndex: number;
  11. }>;
  12. declare namespace showExtendModal {
  13. var version: {
  14. android: string;
  15. ios: string;
  16. };
  17. }
  18. export default showExtendModal;