@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
11 lines (10 loc) • 433 B
TypeScript
import type { really_any } from '../organization/really_any';
/**
* Safely retrieves the global scope object (window in browser, global in Node.js)
* regardless of the JavaScript environment in which the code is running
*
* Note: `$` is used to indicate that this function is not a pure function - it access global scope
*
* @private internal function of `$Register`
*/
export declare function $getGlobalScope(): really_any;