UNPKG

@ngneat/falso

Version:

All the Fake Data for All Your Real Needs

20 lines (19 loc) 412 B
import { FakeOptions } from './core/core'; export interface LineOptions extends FakeOptions { lineCount?: number; } /** * Generate random lines. * * @category text * * @example * * randLine() * * @example * * randLine({ lineCount: 10 }) // default is 5 * */ export declare function randLine<Options extends LineOptions = never>(options?: Options): import("./core/core").Return<string, Options>;