ReorderableEntry
SteamClientHomebrewSDK / client/src / ReorderableEntry
Type Alias: ReorderableEntry<T>
type ReorderableEntry<T> = {
data?: T;
label: ReactNode;
position: number;
};
Defined in: typescript-packages/client/src/custom-components/ReorderableList.tsx:11
A ReorderableList entry of type
Param
The name of this entry in the list.
Param
Optional data to connect to this entry.
Param
The position of this entry in the list.
Type Parameters
T
T
Properties
data?
optional data: T;
Defined in: typescript-packages/client/src/custom-components/ReorderableList.tsx:13
label
label: ReactNode;
Defined in: typescript-packages/client/src/custom-components/ReorderableList.tsx:12
position
position: number;
Defined in: typescript-packages/client/src/custom-components/ReorderableList.tsx:14