Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelsavara committed Mar 3, 2023
1 parent c1aa6c3 commit bf9ef4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mono/wasm/runtime/dotnet.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface DotnetHostBuilder {
withDebugging(level: number): DotnetHostBuilder;
withMainAssembly(mainAssemblyName: string): DotnetHostBuilder;
withApplicationArgumentsFromQuery(): DotnetHostBuilder;
withMemoryCache(value: boolean): DotnetHostBuilder;
create(): Promise<RuntimeAPI>;
run(): Promise<number>;
}
Expand Down Expand Up @@ -133,7 +134,7 @@ type MonoConfig = {
*/
pthreadPoolSize?: number;
/**
* If true, the snapshot of runtime's memory will be stored in the browser and used for faster startup next time.
* If true, the snapshot of runtime's memory will be stored in the browser and used for faster startup next time. Default is true.
*/
cacheMemory?: boolean;
/**
Expand Down

0 comments on commit bf9ef4d

Please sign in to comment.