@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
15 lines (14 loc) • 427 B
TypeScript
import type { string_color, string_person_fullname } from '../../types/string_person_fullname';
/**
* Result of random fullname with color.
*/
export type RandomFullnameWithColorResult = {
fullname: string_person_fullname;
color: string_color;
};
/**
* Handles random fullname with color.
*
* @private internal helper function
*/
export declare function $randomFullnameWithColor(): RandomFullnameWithColorResult;