This commit is contained in:
2024-10-10 16:10:03 +08:00
parent 69e319c91c
commit 13fd65ff50
3 changed files with 9 additions and 13 deletions

8
types/index.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
declare module 'ddmt-tool' {
export function animateStart(event: HTMLElement, className: string, forceExecute?: boolean): void;
export function randomNum(minNum: number): number;
export function randomNum(minNum: number, maxNum: number): number;
export function nextArray(arr: any[], index: number): any[];
}