@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
13 lines (12 loc) • 382 B
TypeScript
/**
* Converts a title string into a normalized name.
*
* Note: [🔂] This function is idempotent.
*
* @param value The title string to be converted to a name.
* @returns A normalized name derived from the input title.
* @example 'Hello World!' -> 'hello-world'
*
* @public exported from `@promptbook/utils`
*/
export declare function titleToName(value: string): string;