Skip to content
Prev Previous commit
Next Next commit
wip
  • Loading branch information
pavelsavara committed Aug 2, 2022
commit 8a9e7a4010a1153267cb9c1ebfb8d6d223857a0b
8 changes: 4 additions & 4 deletions src/Components/Web.JS/@types/dotnet/dotnet.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//!
//! This is generated file, see src/mono/wasm/runtime/rollup.config.js

//! This is not considered public API with backward compatibility guarantees.
//! This is not considered public API with backward compatibility guarantees.

declare interface ManagedPointer {
__brandManagedPointer: "ManagedPointer";
Expand Down Expand Up @@ -230,8 +230,8 @@ interface AssetEntry extends ResourceRequest {
}
declare type AssetBehaviours = "resource" | "assembly" | "pdb" | "heap" | "icu" | "vfs" | "dotnetwasm" | "js-module-crypto" | "js-module-threads";
declare type GlobalizationMode = "icu" | // load ICU globalization data from any runtime assets with behavior "icu".
"invariant" | // operate in invariant globalization mode.
"auto";
"invariant" | // operate in invariant globalization mode.
"auto";
declare type AOTProfilerOptions = {
write_at?: string;
send_to?: string;
Expand Down Expand Up @@ -260,7 +260,7 @@ declare type DotnetModuleConfig = {
onDotnetReady?: () => void | Promise<void>;
imports?: DotnetModuleConfigImports;
exports?: string[];
downloadResource?: (request: ResourceRequest) => LoadingResource;
downloadResource?: (request: ResourceRequest) => LoadingResource | undefined;
} & Partial<EmscriptenModule>;
declare type DotnetModuleConfigImports = {
require?: (name: string) => any;
Expand Down