import type { ToastActionActivationType } from "./ToastActionActivationType.js"; import type { ToastActionAfterActivationBehavior } from "./ToastActionAfterActivationBehavior.js"; import type { ToastActionButtonStyle } from "./ToastActionButtonStyle.js"; import type { ToastActionPlacement } from "./ToastActionPlacement.js"; /** * Specifies a button shown in a toast. * * https://learn.microsoft.com/en-us/uwp/schemas/tiles/toastschema/element-action */ export type ToastAction = { "@content": string; "@arguments": string; "@activationType": ToastActionActivationType; "@afterActivationBehavior": ToastActionAfterActivationBehavior; /** * if set to "contextMenu" then the action will be added to_string the context menu intead of the toast */ "@placement": ToastActionPlacement | null; /** * this is used as button icon */ "@imageUri": string | null; "@hint-inputid": string | null; "@hint-buttonStyle": ToastActionButtonStyle | null; /** * button tooltip */ "@hint-toolTip": string | null; }; //# sourceMappingURL=ToastAction.d.ts.map