From f09052a4a17b2092c9f60dd6e65478afa45143ac Mon Sep 17 00:00:00 2001 From: Sophia Sam Date: Wed, 11 Sep 2024 11:25:56 -0400 Subject: [PATCH] Change to commas --- src/Model/fn.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/fn.ts b/src/Model/fn.ts index f0d215c5..68a72a32 100644 --- a/src/Model/fn.ts +++ b/src/Model/fn.ts @@ -12,8 +12,8 @@ type StartFnParam = unknown; type ModelFn = ((...inputs: Ins) => Out) | { - get(...inputs: Ins): Out; - set(output: Out, ...inputs: Ins): {[key: number] : Ins[number]} | Ins[] | null; + get(...inputs: Ins): Out, + set(output: Out, ...inputs: Ins): {[key: number] : Ins[number]} | Ins[] | null, }; interface ModelStartOptions {