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 {