Files
ox_lib/web/src/interfaces/dialog.ts

12 lines
261 B
TypeScript
Raw Normal View History

import { IconProp } from "@fortawesome/fontawesome-svg-core";
type RowType = "input" | "checkbox" | "select";
export interface Row {
type: RowType;
label: string;
options?: { value: string; label?: string }[];
password?: boolean;
icon?: IconProp;
}