@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
13 lines (12 loc) • 439 B
TypeScript
/**
* Organizational helper to better distinguish different empty object use cases.
*
* Note: There are 2 similar types:
* - `empty_object` Type used for empty data objects with potential extensions
* - `just_empty_object` Type used specifically for objects that must remain empty
*
* Note: In most cases, you should use `empty_object`
*
* @private within the repository
*/
export type just_empty_object = Record<string, never>;