rsuite
Version:
A suite of react components
12 lines (11 loc) • 321 B
TypeScript
interface ExpandOptions<T> {
node: Record<string, unknown>;
isExpand: boolean;
expandItemValues: T[];
valueKey: string;
}
/**
* Returns an array of expanded item values.
*/
export declare function getExpandItemValues<T>({ node, isExpand, expandItemValues, valueKey }: ExpandOptions<T>): T[];
export {};