Options for command — Effect ChildProcess options plus token injection mode.
modelscommand
Source src/internal/launcher.ts:977 lines
export interface CommandOptions extends import ChildProcessChildProcess.CommandOptions {
/**
* Where to put the minted assume token. Default `"env"` → `HYPERLINK_ASSUME_TOKEN`.
* `"argv"` appends the token as the last argument; `"both"` does both.
*/
readonly CommandOptions.token?: TokenInjectionWhere to put the minted assume token. Default "env" → HYPERLINK_ASSUME_TOKEN.
"argv" appends the token as the last argument; "both" does both.
token?: type TokenInjection =
| "env"
| "argv"
| "both"
How the assume token is injected into the child process.
TokenInjection;
}
Referenced by 1 symbols