mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-03 03:58:54 +00:00
17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
interface Env {
|
||
|
|
/**
|
||
|
|
* Indicate whether run in debug mode.
|
||
|
|
*/
|
||
|
|
debug?: boolean;
|
||
|
|
|
||
|
|
[name: string]: unknown;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Represent a set of flags as a global singleton.
|
||
|
|
*/
|
||
|
|
export const env: Env = {};
|