layout.d.ts: correct render() type

pull/2851/head
Rob Pilling 2023-06-29 21:17:18 +01:00
parent 77ff7fa58b
commit 76a60d6ae3
1 changed files with 1 additions and 1 deletions

View File

@ -140,6 +140,6 @@ declare module Layout {
r?: Rotation, r?: Rotation,
} | { } | {
type: "custom", type: "custom",
render: (h: Hierarchy) => void, render: (h: RenderedHierarchy) => void,
}; };
} }