@promptbook/openai
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
14 lines (13 loc) • 425 B
TypeScript
import type { string_color, string_person_fullname } from '../../types/typeAliases';
export type RandomFullnameWithColorResult = {
fullname: string_person_fullname;
color: string_color;
};
/**
*
* @private internal helper function
*/
export declare function $randomFullnameWithColor(): RandomFullnameWithColorResult;
/**
* TODO: [🤶] Maybe export through `@promptbook/utils` or `@promptbook/random` package
*/