mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 14:20:12 +00:00
fix lint
This commit is contained in:
@@ -725,12 +725,12 @@ describe("A spy, when created manually", () => {
|
||||
describe("Multiple spies, when created manually", () => {
|
||||
class Tape {
|
||||
private rewindTo: number;
|
||||
play(): void { };
|
||||
pause(): void { };
|
||||
play(): void { }
|
||||
pause(): void { }
|
||||
rewind(pos: number): void {
|
||||
this.rewindTo = pos;
|
||||
};
|
||||
stop(): void { };
|
||||
}
|
||||
stop(): void { }
|
||||
readonly isPlaying: boolean; // spy obj makes this writable
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user