Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-11-11 17:45:19 +00:00
parent 7f7df4b3fa
commit fe6283ba12
326 changed files with 1151 additions and 1864 deletions

4
node_modules/uuid/dist/cjs/v1.d.ts generated vendored
View file

@ -1,4 +1,4 @@
import { Version1Options } from './_types.js';
import { Version1Options } from './types.js';
type V1State = {
node?: Uint8Array;
clockseq?: number;
@ -6,6 +6,6 @@ type V1State = {
nsecs?: number;
};
declare function v1(options?: Version1Options, buf?: undefined, offset?: number): string;
declare function v1(options?: Version1Options, buf?: Uint8Array, offset?: number): Uint8Array;
declare function v1(options: Version1Options | undefined, buf: Uint8Array, offset?: number): Uint8Array;
export declare function updateV1State(state: V1State, now: number, rnds: Uint8Array): V1State;
export default v1;