import type { ToastInputSelection } from "./ToastInputSelection.js"; import type { ToastInputType } from "./ToastInputType.js"; /** * Specifies an input, either text box or selection menu, shown in a toast notification. * * https://learn.microsoft.com/en-us/uwp/schemas/tiles/toastschema/element-input */ export type ToastInput = { /** * The ID associated with the input */ "@id": string; /** * The type of input. */ "@type": ToastInputType; /** * The placeholder displayed for text input. */ "@placeHolderContent": string | null; /** * Text displayed as a label for the input. */ "@title": string | null; /** * Options for the input if it is of type selection. */ selection: Array; }; //# sourceMappingURL=ToastInput.d.ts.map