This commit is contained in:
2024-12-13 22:07:20 +08:00
parent 7f8b2e4f7a
commit 3ecf33036c
3 changed files with 75 additions and 47 deletions

1
types/index.d.ts vendored
View File

@@ -8,5 +8,6 @@ declare module 'ddmt-tool' {
export function randomNum(minNum: number): number;
export function randomNum(minNum: number, maxNum: number): number;
export function nextArray(arr: any[], index: number): any[];
export function parseNginxLog(log: string): object;
}