From 55a043366aede0f710615b967af06140df609ed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher=20Andr=C3=A9s?= Date: Sun, 2 Jun 2024 19:03:59 +0200 Subject: [PATCH] FIX: Fixes TypeScript types correctly (#75) We really need a better way of doing this :/ --- bindings/wasm/fix_types.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bindings/wasm/fix_types.py b/bindings/wasm/fix_types.py index 24b2bf8..dab2776 100644 --- a/bindings/wasm/fix_types.py +++ b/bindings/wasm/fix_types.py @@ -81,7 +81,6 @@ autofill_rows = r""" * @param {number} to_row */ autoFillRows(source_area: any, to_row: number): void; -} """ autofill_rows_types = r""" @@ -90,7 +89,6 @@ autofill_rows_types = r""" * @param {number} to_row */ autoFillRows(source_area: Area, to_row: number): void; -} """ autofill_columns = r""" @@ -99,7 +97,6 @@ autofill_columns = r""" * @param {number} to_column */ autoFillColumns(source_area: any, to_column: number): void; -} """ autofill_columns_types = r""" @@ -108,7 +105,6 @@ autofill_columns_types = r""" * @param {number} to_column */ autoFillColumns(source_area: Area, to_column: number): void; -} """ def fix_types(text):