Skip to content

Commit

Permalink
add start method to EventPipeSession interface
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdageek committed May 10, 2022
1 parent 252d06a commit 8b54aab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/mono/wasm/runtime/diagnostics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import * as memory from './memory';

export interface EventPipeSession {
get sessionID(): number;
start(): void;
stop(): void;
saveTrace(): string;

Expand Down
1 change: 1 addition & 0 deletions src/mono/wasm/runtime/dotnet.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ declare type DotnetModuleConfigImports = {

interface EventPipeSession {
get sessionID(): number;
start(): void;
stop(): void;
saveTrace(): string;
}
Expand Down

0 comments on commit 8b54aab

Please sign in to comment.