nuke more any

This commit is contained in:
Olivier Gagnon 2022-07-14 19:07:10 -04:00
parent dd7ceeefdd
commit 6a11998427

@ -46,22 +46,22 @@ export class DummyGift implements IStaneksGift {
return undefined;
}
delete(): any {
delete(): boolean {
throw new Error("unimplemented for dummy gift");
}
clear(): any {
clear(): void {
throw new Error("unimplemented for dummy gift");
}
count(): any {
count(): number {
throw new Error("unimplemented for dummy gift");
}
inBonus(): any {
inBonus(): boolean {
throw new Error("unimplemented for dummy gift");
}
prestigeAugmentation(): any {
prestigeAugmentation(): void {
throw new Error("unimplemented for dummy gift");
}
prestigeSourceFile(): any {
prestigeSourceFile(): void {
throw new Error("unimplemented for dummy gift");
}
}