Skip to content

Commit

Permalink
fix: typings source type
Browse files Browse the repository at this point in the history
  • Loading branch information
zlataovce committed Jul 11, 2024
1 parent 2ef3044 commit b651253
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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()}"
Expand Down
2 changes: 1 addition & 1 deletion cfr.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ declare module "@run-slicer/cfr" {
export type Options = Record<string, string>;

export interface Config {
source?: (name: string) => Promise<string | null>;
source?: (name: string) => Promise<Uint8Array | null>;
options?: Options;
}

Expand Down

0 comments on commit b651253

Please sign in to comment.