1
0
Fork 0

layout.d.ts: render() takes a RenderedHierarchy (x/y/w/h)

master
Rob Pilling 2023-05-21 15:13:39 +01:00
parent c004336e3e
commit b67412299f
1 changed files with 1 additions and 1 deletions

View File

@ -120,6 +120,6 @@ declare module Layout_ {
src: Image | (() => Image),
} | {
type: "custom",
render: (h: Hierarchy) => void,
render: (h: RenderedHierarchy) => void,
};
}