/* * Copyright (c) 2021 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @file * @kit ArkUI */ import { AsyncCallback } from './@ohos.base'; /** * @namespace prompt * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 * @useinstead ohos.promptAction */ declare namespace prompt { /** * @interface ShowToastOptions * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ interface ShowToastOptions { /** * Text to display. * * @type { string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ message: string; /** * Duration of toast dialog box. The default value is 1500. * The recommended value ranges from 1500 ms to 10000ms. * NOTE: A value less than 1500 is automatically changed to 1500. The maximum value is 10000 ms. * * @type { ?number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ duration?: number; /** * The distance between toast dialog box and the bottom of screen. * * @type { ?(string | number) } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ bottom?: string | number; } /** * @interface Button * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ interface Button { /** * @type { string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ text: string; /** * @type { string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ color: string; } /** * @interface ShowDialogSuccessResponse * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ interface ShowDialogSuccessResponse { /** * @type { number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ index: number; } /** * @interface ShowDialogOptions * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ interface ShowDialogOptions { /** * Title of the text to display. * * @type { ?string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ title?: string; /** * Text body. * * @type { ?string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ message?: string; /** * Array of buttons in the dialog box. * The array structure is {text:'button', color: '#666666'}. * One to three buttons are supported. The first button is of the positiveButton type, the second is of the negativeButton type, and the third is of the neutralButton type. * * @type { ?[Button, Button?, Button?] } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ buttons?: [Button, Button?, Button?]; } /** * @interface ActionMenuSuccessResponse * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ interface ActionMenuSuccessResponse { /** * @type { number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ index: number; } /** * @interface ActionMenuOptions * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ interface ActionMenuOptions { /** * Title of the text to display. * * @type { ?string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ title?: string; /** * Array of buttons in the dialog box. * The array structure is {text:'button', color: '#666666'}. * One to six buttons are supported. * * @type { [Button, Button?, Button?, Button?, Button?, Button?] } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ buttons: [Button, Button?, Button?, Button?, Button?, Button?]; } /** * Displays the notification text. * * @param { ShowToastOptions } options - Options. * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ function showToast(options: ShowToastOptions): void; /** * Displays the dialog box. * * @param { ShowDialogOptions } options - Options. * @param { AsyncCallback } callback * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ function showDialog(options: ShowDialogOptions, callback: AsyncCallback): void; /** * Displays the dialog box. * * @param { ShowDialogOptions } options - Options. * @returns { Promise } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ function showDialog(options: ShowDialogOptions): Promise; /** * Displays the menu. * * @param { ActionMenuOptions } options - Options. * @param { AsyncCallback } callback * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ function showActionMenu(options: ActionMenuOptions, callback: AsyncCallback): void; /** * Displays the menu. * * @param { ActionMenuOptions } options - Options. * @returns { Promise } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 * @deprecated since 9 */ function showActionMenu(options: ActionMenuOptions): Promise; } export default prompt;