-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(SteamClient): remove duplicate types
- Loading branch information
1 parent
b62fed0
commit 8102f28
Showing
55 changed files
with
737 additions
and
870 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
export interface Cloud { | ||
/** | ||
* Resolves a synchronization conflict for an app in the cloud. | ||
* @param {number} appId - The ID of the app with the sync conflict. | ||
* @param {boolean} keepLocal - Whether to keep the local version during conflict resolution. | ||
* @returns {any} - Returns data related to resolving the sync conflict. | ||
* @param appId The ID of the app with the sync conflict. | ||
* @param keepLocal Whether to keep the local version during conflict resolution. | ||
* @returns Returns data related to resolving the sync conflict. | ||
*/ | ||
ResolveAppSyncConflict(appId: number, keepLocal: boolean): void; | ||
|
||
/** | ||
* Retries syncing an app with the cloud. | ||
* @param {number} appId - The ID of the app to retry syncing. | ||
* @returns {any} - Returns data related to retrying the app sync. | ||
* @param appId The ID of the app to retry syncing. | ||
* @returns Returns data related to retrying the app sync. | ||
*/ | ||
RetryAppSync(appId: number): void; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.