UNPKG

randomuser-sdk-ts

Version:

randomuser.me sdk in typescript with types

8 lines (7 loc) 181 B
import { Info } from "./Info"; import { User } from "./User"; //https://randomuser.me/documentation#howto export type ApiUserResponse = { results: User[]; info: Info; };