File tree Expand file tree Collapse file tree 3 files changed +12
-20
lines changed Expand file tree Collapse file tree 3 files changed +12
-20
lines changed Original file line number Diff line number Diff line change 1+ namespace ElectronNET . API
2+ {
3+ /// <summary>
4+ /// An object listing the version strings specific to Electron
5+ /// </summary>
6+ /// <param name="Chrome">Value representing Chrome's version string</param>
7+ /// <param name="Electron">Value representing Electron's version string</param>
8+ /// <returns></returns>
9+ public record ProcessVersions ( string Chrome , string Electron ) ;
10+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -83,11 +83,11 @@ public Task<string> TypeAsync
8383 /// The process.versions property returns an object listing the version strings of
8484 /// chrome and electron.
8585 /// </summary>
86- public Task < Versions > VersionsAsync
86+ public Task < ProcessVersions > VersionsAsync
8787 {
8888 get
8989 {
90- return BridgeConnector . GetValueOverSocketAsync < Versions > (
90+ return BridgeConnector . GetValueOverSocketAsync < ProcessVersions > (
9191 "process-versions" , "process-versions-Completed" ) ;
9292 }
9393 }
You can’t perform that action at this time.
0 commit comments