Skip to content

Commit

Permalink
[autorelease] Fix option types to be nullable.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Dec 12, 2023
1 parent fc78ecf commit d669c99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class Application {
constructor(resourceFileURL: URL | string, instantiate: any, argv0: string);

run(args: string[], files: Tree, options: {
printLine: (line: string) => void,
decodeASCII: boolean
printLine?: (line: string) => void,
decodeASCII?: boolean
}): Promise<Tree>;
}

0 comments on commit d669c99

Please sign in to comment.