n8n-nodes-base
Version:
Base nodes of n8n
53 lines • 1.22 kB
TypeScript
import 'minifaker/locales/en';
export declare function generateRandomUser(): {
uid: string;
email: string;
firstname: string;
lastname: string;
password: string;
};
export declare function generateRandomAddress(): {
firstname: string;
lastname: string;
street: string;
city: string;
zip: string;
state: string;
country: string;
};
export declare function generateRandomEmail(): {
email: string;
confirmed: boolean;
};
export declare function generateUUID(): {
uuid: string;
};
export declare function generateNanoid(customAlphabet: string, length: string): {
nanoId: string;
};
export declare function generateCreditCard(): {
type: string;
number: string;
ccv: string;
exp: string;
holder_name: string;
};
export declare function generateURL(): {
url: string;
};
export declare function generateIPv4(): {
ip: string;
};
export declare function generateIPv6(): {
ipv6: string;
};
export declare function generateMAC(): {
mac: string;
};
export declare function generateLocation(): {
location: string;
};
export declare function generateVersion(): {
version: string;
};
//# sourceMappingURL=randomData.d.ts.map