Allow handle id to be null

This commit is contained in:
peterkogo
2025-01-21 15:45:35 +01:00
parent 7cb9a8686d
commit c12fa5c178

View File

@@ -36,5 +36,5 @@ export type HandleProps = {
/** Id of the handle
* @remarks optional if there is only one handle of this type
*/
id?: string;
id?: string | null;
};