Newer
Older
vue-indexer / node_modules / zod / lib / __tests__ / Mocker.d.ts
@eugene-sukhodolskiy eugene-sukhodolskiy on 24 Sep 463 bytes v1.0
export declare class Mocker {
    pick: (...args: any[]) => any;
    get string(): string;
    get number(): number;
    get bigint(): bigint;
    get boolean(): boolean;
    get date(): Date;
    get symbol(): symbol;
    get null(): null;
    get undefined(): undefined;
    get stringOptional(): any;
    get stringNullable(): any;
    get numberOptional(): any;
    get numberNullable(): any;
    get booleanOptional(): any;
    get booleanNullable(): any;
}