fkdt
Version:
Generate fake data for projects.
21 lines (20 loc) • 609 B
TypeScript
import { name, age, phone, job, interest, color, pet, uuid, password, username, ip, country, state, latitude, longitude, email } from './functions';
declare const fkdt: {
name: typeof name;
age: typeof age;
phone: typeof phone;
job: typeof job;
interest: typeof interest;
color: typeof color;
pet: typeof pet;
uuid: typeof uuid;
password: typeof password;
username: typeof username;
ip: typeof ip;
country: typeof country;
state: typeof state;
latitude: typeof latitude;
longitude: typeof longitude;
email: typeof email;
};
export default fkdt;