1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-14 19:40:45 +01:00
BlueWallet/screen/ActionSheet.common.ts
2025-01-19 15:12:35 -04:00

12 lines
331 B
TypeScript

// ActionSheet.common.ts
export interface ActionSheetOptions {
title?: string;
message?: string;
options: string[]; // Array of button labels.
destructiveButtonIndex?: number;
cancelButtonIndex?: number;
confirmButtonIndex?: number;
anchor?: number;
}
export type CompletionCallback = (buttonIndex: number) => void;