@types/random-ipv6
Version:
TypeScript definitions for random-ipv6
14 lines (12 loc) • 397 B
TypeScript
interface Options extends
Record<
string | symbol,
boolean | undefined | { max?: number | string | undefined; min?: number | string | undefined }
>
{
compressed?: boolean | undefined;
padded?: boolean | undefined;
}
declare function randomIPv6(schema?: Options): string;
declare function randomIPv6(schema: string, options?: Options): string;
export = randomIPv6;