UNPKG

korean-dummy-json-fetcher

Version:

한국어 더미 데이터 생성 라이브러리

8 lines (7 loc) 238 B
import { GetLoremResponse } from "./types"; export interface GetLoremOptions { mode?: "p" | "s" | "w"; count?: number; length?: number; } export declare function getLorem(options?: GetLoremOptions): Promise<GetLoremResponse>;