修改后台权限

This commit is contained in:
yoyuzh
2026-03-24 14:30:59 +08:00
parent 00f902f475
commit b2d9db7be9
9310 changed files with 1246063 additions and 48 deletions

30
node_modules/parse-ms/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,30 @@
export type TimeComponents<T extends (number | bigint) = number> = {
days: T;
hours: T;
minutes: T;
seconds: T;
milliseconds: T;
microseconds: T;
nanoseconds: T;
};
/**
Parse milliseconds into an object.
@example
```
import parseMilliseconds from 'parse-ms';
parseMilliseconds(1337000001);
// {
// days: 15,
// hours: 11,
// minutes: 23,
// seconds: 20,
// milliseconds: 1,
// microseconds: 0,
// nanoseconds: 0
// }
```
*/
export default function parseMilliseconds<T extends number | bigint>(milliseconds: T): TimeComponents<T>;