修改后台权限

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

36
node_modules/rettime/build/lens-list.d.mts generated vendored Normal file
View File

@@ -0,0 +1,36 @@
//#region src/lens-list.d.ts
declare class LensList<T> {
#private;
constructor();
get [Symbol.iterator](): any;
entries(): MapIterator<[string, T[]]>;
/**
* Return an order-sensitive list of values by the given key.
*/
get(key: string): Array<T>;
/**
* Return an order-sensitive list of all values.
*/
getAll(): Array<T>;
/**
* Append a new value to the given key.
*/
append(key: string, value: T): void;
/**
* Prepend a new value to the given key.
*/
prepend(key: string, value: T): void;
/**
* Delete the value belonging to the given key.
*/
delete(key: string, value: T): void;
/**
* Delete all values belogning to the given key.
*/
deleteAll(key: string): void;
get size(): number;
clear(): void;
}
//#endregion
export { LensList };
//# sourceMappingURL=lens-list.d.mts.map