/** * represent runtime environment settings and status of ONNX.js */ export interface Environment { /** * a global flag to indicate whether to run ONNX.js in debug mode */ debug: boolean; }