changing javascript to typescript

This commit is contained in:
night0721 2021-09-13 19:29:57 +08:00
commit 59e4f8ae40

View file

@ -7,5 +7,5 @@ declare module "cath" {
public getperk(perk: string): Promise<object>; public getperk(perk: string): Promise<object>;
} }
export async function random8ball(): Promise<string>; export function random8ball(): Promise<string>;
} }