From dfcb3bec19900e099ae3766771e120dbd4f229f5 Mon Sep 17 00:00:00 2001 From: Tormak <63308171+Tormak9970@users.noreply.github.com> Date: Tue, 21 Feb 2023 12:22:21 -0600 Subject: [PATCH] feat: added doc comments --- src/custom-components/ReorderableList.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/custom-components/ReorderableList.tsx b/src/custom-components/ReorderableList.tsx index 0c210f7..8c9445f 100644 --- a/src/custom-components/ReorderableList.tsx +++ b/src/custom-components/ReorderableList.tsx @@ -4,6 +4,9 @@ import { Field, FieldProps, Focusable, GamepadButton } from '../deck-components' /** * A ReorderableList entry of type . + * @param label The name of this entry in the list. + * @param data Optional data to connect to this entry. + * @param position The position of this entry in the list. */ export type ReorderableEntry = { label: string;