mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-20 15:34:26 +08:00
15 lines
251 B
TypeScript
15 lines
251 B
TypeScript
/**
|
|
* Android specific dialogs functions implementation.
|
|
*/
|
|
|
|
export function alert(message: string): void {
|
|
|
|
}
|
|
|
|
export function confirm(message: string): void {
|
|
|
|
}
|
|
|
|
export function prompt(text: string, defaultText?: string): void {
|
|
|
|
} |