mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
12 lines
272 B
TypeScript
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;
|
|
}
|