From 92e83193c4f553b443d8b98bff135a4ced662c05 Mon Sep 17 00:00:00 2001 From: Bela Bohlender Date: Wed, 22 Feb 2023 13:09:05 -0800 Subject: [PATCH] Typescript: Fix typo in type defintions (#1231) Summary: Extracted the typo fix from https://github.com/facebook/yoga/pull/1228 Pull Request resolved: https://github.com/facebook/yoga/pull/1231 Reviewed By: NickGerleman Differential Revision: D43495158 Pulled By: cortinico fbshipit-source-id: a455eb231169d53b8d4ced9a783b94d2ee46ca0c --- javascript/src_js/wrapAsm.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/src_js/wrapAsm.d.ts b/javascript/src_js/wrapAsm.d.ts index 83bee609..a847e4a8 100644 --- a/javascript/src_js/wrapAsm.d.ts +++ b/javascript/src_js/wrapAsm.d.ts @@ -156,7 +156,7 @@ export type Node = { setWidth(width: number | string): void, setWidthAuto(): void, setWidthPercent(width: number): void, - unsetMeasureFun(): void, + unsetMeasureFunc(): void, }; export type Yoga = {