📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

@types/uuid-js

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/uuid-js

TypeScript definitions for uuid-js

0.7.6
ts4.5
ts4.6
ts4.7
ts4.8
ts4.9
ts5.0
ts5.1
ts5.2
ts5.3
ts5.4
ts5.5
ts5.6
ts5.7
ts5.8
ts5.9
latest
Source
npm
Version published
Weekly downloads
1.2K
-46.71%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/uuid-js

Summary

This package contains type definitions for uuid-js (https://github.com/pnegri/uuid-js).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid-js.

index.d.ts

export = uuid;
declare class uuid {
    equals(uuid: uuid): boolean;
    fromParts(
        timeLow: any,
        timeMid: any,
        timeHiAndVersion: any,
        clockSeqHiAndReserved: any,
        clockSeqLow: any,
        node: any,
    ): uuid;
    toBytes(): any[];
    toString(): string;
    toURN(): string;
    static create(version?: number): uuid;
    static firstFromTime(time: number): uuid;
    static fromBinary(binary: any): uuid;
    static fromBytes(ints: number[]): uuid;
    static fromTime(time: number, last?: boolean): uuid;
    static fromURN(strId: any): uuid;
    static getTimeFieldValues(time: any): any;
    static lastFromTime(time: any): uuid;
    static limitUI04: number;
    static limitUI06: number;
    static limitUI08: number;
    static limitUI12: number;
    static limitUI14: number;
    static limitUI16: number;
    static limitUI32: number;
    static limitUI40: number;
    static limitUI48: number;
    static maxFromBits(bits: number): uuid;
    static newTS(): uuid;
    static paddedString(string: any, length: any, z: any): uuid;
    static randomUI04(): uuid;
    static randomUI06(): uuid;
    static randomUI08(): uuid;
    static randomUI12(): uuid;
    static randomUI14(): uuid;
    static randomUI16(): uuid;
    static randomUI32(): uuid;
    static randomUI40(): uuid;
    static randomUI48(): uuid;
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: none

Credits

These definitions were written by Mohamed Hegazy.

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts