claude-code / mods /diff /tests /fixtures /scripted /scripted-git.ts
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
7f0ec95 verified
Raw
History Blame Contribute Delete
230 Bytes
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[])[]
}