Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mono/wasm/runtime/types.ts')
-rw-r--r--src/mono/wasm/runtime/types.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mono/wasm/runtime/types.ts b/src/mono/wasm/runtime/types.ts
index 2b85e899538..db3834c11c0 100644
--- a/src/mono/wasm/runtime/types.ts
+++ b/src/mono/wasm/runtime/types.ts
@@ -78,7 +78,8 @@ export type MonoConfig = {
runtime_options?: string[], // array of runtime options as strings
aot_profiler_options?: AOTProfilerOptions, // dictionary-style Object. If omitted, aot profiler will not be initialized.
coverage_profiler_options?: CoverageProfilerOptions, // dictionary-style Object. If omitted, coverage profiler will not be initialized.
- ignore_pdb_load_errors?: boolean
+ ignore_pdb_load_errors?: boolean,
+ wait_for_debugger ?: number
};
export type MonoConfigError = {
@@ -152,6 +153,7 @@ export type RuntimeHelpers = {
loaded_files: string[];
config: MonoConfig | MonoConfigError;
+ wait_for_debugger?: number;
fetch: (url: string) => Promise<Response>;
}