Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
victrme committed Feb 5, 2025
1 parent a8b46cc commit 0a16b7b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,17 @@ window.onload = async function () {

```ts
interface Default {
text: (query: string, fast?: true) => Promise<string>
blob: (query: string, fast?: true) => Promise<Blob>
text: (query: string, options?: Options) => Promise<string>
blob: (query: string, options?: Options) => Promise<Blob>
fetch: (request: Request) => Promise<Response>
list: (query: string) => Promise<string[]>
debug: (query: string) => Promise<Debug>
}

interface Options {
log?: true
check?: "all" | "best" | "none"
}
```

## Publish
Expand Down

0 comments on commit 0a16b7b

Please sign in to comment.