From 76a60d6ae304b28e66ffa8a9d4d37975d1b761b0 Mon Sep 17 00:00:00 2001 From: Rob Pilling Date: Thu, 29 Jun 2023 21:17:18 +0100 Subject: [PATCH] layout.d.ts: correct render() type --- typescript/types/layout.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/types/layout.d.ts b/typescript/types/layout.d.ts index ac4b0015c..167ede29d 100644 --- a/typescript/types/layout.d.ts +++ b/typescript/types/layout.d.ts @@ -140,6 +140,6 @@ declare module Layout { r?: Rotation, } | { type: "custom", - render: (h: Hierarchy) => void, + render: (h: RenderedHierarchy) => void, }; }