Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-10-28 17:09:14 +00:00
parent 3d19b71b35
commit 3dfa09571f
349 changed files with 6162 additions and 3720 deletions

9
node_modules/uuid/dist/esm-browser/v7.d.ts generated vendored Normal file
View file

@ -0,0 +1,9 @@
import { Version7Options } from './_types.js';
type V7State = {
msecs?: number;
seq?: number;
};
declare function v7(options?: Version7Options, buf?: undefined, offset?: number): string;
declare function v7(options?: Version7Options, buf?: Uint8Array, offset?: number): Uint8Array;
export declare function updateV7State(state: V7State, now: number, rnds: Uint8Array): V7State;
export default v7;