mirror of
https://github.com/anthropics/claude-code.git
synced 2026-09-14 19:48:39 +08:00
18be13be81
Squash merge of 4 commits
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import type Git from '../../../hooks/git'
|
|
|
|
/**
|
|
* A git answering from a script: the runner, and every argv it has been
|
|
* handed so far.
|
|
*/
|
|
export type ScriptedGit = {
|
|
run: Git.GitRun
|
|
argvs: readonly (readonly string[])[]
|
|
}
|