| 277 | CommittingChanges = 5 |
| 278 | } |
| 279 | export interface UpdateProgress { |
| 280 | status: UpdateStatus |
| 281 | progress: bigint |
| 282 | total: bigint |
| 283 | } |
| 284 | export function createItem(appId?: number | undefined | null): Promise<UgcResult> |
| 285 | export function updateItem(itemId: bigint, updateDetails: UgcUpdate, appId?: number | undefined | null): Promise<UgcResult> |
| 286 | export function updateItemWithCallback(itemId: bigint, updateDetails: UgcUpdate, appId: number | undefined | null, successCallback: (data: UgcResult) => void, errorCallback: (err: any) => void, progressCallback?: (data: UpdateProgress) => void, progressCallbackIntervalMs?: number | undefined | null): void |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…