convex
Version:
Client for the Convex Cloud
19 lines (16 loc) • 577 B
TypeScript
/**
* The Convex function environment.
*
* Query and mutation functions run in a limited environment within your deployment.
* Here are the global APIs that are available in addition to the standard JavaScript ones.
* To learn more, see [Query and Mutation Function Environment](https://docs.convex.dev/using/query-and-mutation-functions#environment).
* @module
*/
interface Console {
debug(...data: any[]): void;
error(...data: any[]): void;
info(...data: any[]): void;
log(...data: any[]): void;
warn(...data: any[]): void;
}
declare let console: Console;