layout: `render()` is called on the layout object

master
Rob Pilling 2025-05-14 22:37:32 +01:00
parent ce4b7df9ee
commit af81cbad04
1 changed files with 1 additions and 1 deletions

View File

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