UNPKG

@ngneat/falso

Version:

All the Fake Data for All Your Real Needs

21 lines (20 loc) 394 B
import { NameOptions } from './full-name'; /** * Generate a random last name. * * @category person * * @example * * randLastName() * * @example * * randLastName({ withAccents: false }) * * @example * * randLastName({ length: 10 }) * */ export declare function randLastName<Options extends NameOptions = never>(options?: Options): import("./core/core").Return<string, Options>;