@procore/core-react
Version:
React library of Procore Design Guidelines
19 lines (18 loc) • 510 B
TypeScript
export interface GroupSelectOption {
id: number;
label: string;
groupId?: string | number;
}
export interface GroupSelectGroupOption {
id: number;
label: string;
options: GroupSelectOption[];
groupId?: string | number;
}
export interface GroupSelectOptGroupOption {
id: string;
label: string;
}
export declare const fakeOptions: GroupSelectOption[];
export declare const fakeGroups: GroupSelectGroupOption[];
export declare const fakeOptGroups: GroupSelectOptGroupOption[];