/** * #form.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ import type { FormField } from "./field.js"; export type Form = { fields: FormField[]; /** Title to display on the form */ title?: string | undefined; /** Short description explaining the purpose of the form */ shortDescription?: string | undefined; /** Alternate text to display on the "OK" button */ acceptLabel?: string | undefined; /** Alternate text to display on the "Cancel" button */ cancelLabel?: string | undefined; /** Unique ID for this form, to help differentiate results if managing more than one form at a time */ id?: string | undefined; }; //# sourceMappingURL=form.d.ts.map