UNPKG

@dishuostec/llrt-types

Version:

Type definitions for LLRT, Low Latency Runtime

19 lines (15 loc) 420 B
declare module "llrt:util" { interface LoadOptions { global?: boolean; strict?: boolean; } export function dimensions(): [number, number]; export function load(path: string, options?: LoadOptions): any; export function print(value: any, stdout?: boolean): void; const _default: { dimensions: typeof dimensions; load: typeof load; print: typeof print; }; export default _default; }