mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
12 lines
300 B
TypeScript
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;
|