@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
10 lines (9 loc) • 346 B
TypeScript
/**
* Converts a given name into URI-compatible parts.
*
* @param name The name to be converted into URI parts.
* @returns An array of URI-compatible parts derived from the name.
* @example 'Example Name' -> ['example', 'name']
* @public exported from `@promptbook/utils`
*/
export declare function nameToUriParts(name: string): string[];