Files
2026-02-21 10:33:18 +01:00

16 lines
356 B
TypeScript

export declare const disableGitSourceOption: {
cliFlag: string;
description: () => string;
docLink: string;
getValue: ({ commandLine }: {
commandLine: Record<string, unknown>;
}) => {
source: string;
value: boolean;
};
name: string;
setConfig: () => never;
ssrName: string;
type: boolean;
};