From 70c761249ffbaaba0e8768c8a36f90686352be27 Mon Sep 17 00:00:00 2001 From: Matt Vague Date: Wed, 20 Apr 2022 17:12:04 -0700 Subject: [PATCH] Make `import()` options actually optional --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index d7ee3e335..534dc782b 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -2913,7 +2913,7 @@ declare namespace math { * @param object An object with functions to be imported. * @param options An object with import options. */ - import(object: ImportObject | ImportObject[], options: ImportOptions): void; + import(object: ImportObject | ImportObject[], options?: ImportOptions): void; } /*************************************************************************