From b65125393a6e372a76bd7654e0e0a6ee54c23cad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matou=C5=A1=20Ku=C4=8Dera?= Date: Thu, 11 Jul 2024 09:30:37 +0200 Subject: [PATCH] fix: typings source type --- build.gradle.kts | 2 +- cfr.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 946e8f6..f91b3ff 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,7 +3,7 @@ plugins { alias(libs.plugins.teavm) // order matters? } -val thisVersion = "0.1.1" +val thisVersion = "0.1.2" group = "run.slicer" version = "$thisVersion-${libs.versions.cfr.get()}" diff --git a/cfr.d.ts b/cfr.d.ts index 739f911..e9c9e99 100644 --- a/cfr.d.ts +++ b/cfr.d.ts @@ -2,7 +2,7 @@ declare module "@run-slicer/cfr" { export type Options = Record; export interface Config { - source?: (name: string) => Promise; + source?: (name: string) => Promise; options?: Options; }