Files
huishou/node_modules/@simple-git/argv-parser/dist/src/flags/parse-global-flags.d.ts
T
2026-07-27 13:37:48 +08:00

7 lines
219 B
TypeScript

import type { Flag } from './flags.helpers';
export interface GlobalFlags {
flags: Flag[];
taskIndex: number;
}
export declare function parseGlobalFlags(tokens: readonly unknown[], flags?: Flag[]): GlobalFlags;