BlueWallet/screen/ActionSheet.common.ts
Marcos Rodriguez Velez 32ce3525b8
Lint
2024-03-09 00:08:07 -04:00

12 lines
300 B
TypeScript

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