mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00
10 lines
303 B
TypeScript
10 lines
303 B
TypeScript
import { Controller } from ".."
|
|
import { Empty, Int64Request } from "@shared/proto/common"
|
|
|
|
export async function checkpointDiff(controller: Controller, request: Int64Request): Promise<Empty> {
|
|
if (request.value) {
|
|
await controller.task?.presentMultifileDiff(request.value, false)
|
|
}
|
|
return Empty
|
|
}
|