quickjs/doc/globals.d.ts
2025-06-29 12:38:47 +00:00

15 lines
382 B
TypeScript

/** Command line arguments where argument[0] is the JS script name. */
declare const scriptArgs: string[];
/** Print args separated by spaces and a trailing newline. */
declare function print(...args: any[]): void;
declare const console: {
/** Print args separated by spaces and a trailing newline. */
log: typeof print
};
interface ImportMeta {
url: string;
main: boolean;
}