Skip to content

Commit

Permalink
fix(TS4114): add missing override modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
e-kwsm committed Dec 4, 2024
1 parent 794fae2 commit 34005d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion progress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ export class Progress {
}

export class SilentProgress extends Progress {
async log(_: string) {}
override async log(_: string) {}
}
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class FakeRegistry implements RegistryUrl {

export class FakeDenoLand extends DenoLand {
// deno-lint-ignore require-await
async all(): Promise<string[]> {
override async all(): Promise<string[]> {
return ["0.35.0", "0.34.0"];
}
}

0 comments on commit 34005d4

Please sign in to comment.