Files
ox_lib/web/src/interfaces/dialog.ts
2022-06-19 14:57:03 +02:00

12 lines
272 B
TypeScript

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