@ngneat/falso
Version:
All the Fake Data for All Your Real Needs
18 lines (17 loc) • 411 B
TypeScript
import { FakeOptions } from './core/core';
export declare function gitShaGenerator(len: number): () => string;
/**
* Generate a random git sha.
*
* @category git
*
* @example
*
* randGitCommitSha()
*
* @example
*
* randGitCommitSha({ length: 10 })
*
*/
export declare function randGitCommitSha<Options extends FakeOptions = never>(options?: Options): import("./core/core").Return<string, Options>;