UNPKG

@promptbook/azure-openai

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

22 lines (21 loc) 601 B
/** * Semantic helper for kebab-case strings * * @example 'hello-world' * @example 'i-love-promptbook' * @public exported from `@promptbook/utils` */ export type string_kebab_case = string; /** * Converts a given text to kebab-case format. * * @param text The text to be converted. * @returns The kebab-case formatted string. * @example 'hello-world' * @example 'i-love-promptbook' * @public exported from `@promptbook/utils` */ export declare function normalizeToKebabCase(text: string): string_kebab_case; /** * Note: [💞] Ignore a discrepancy between file name and entity name */