16 lines
406 B
TypeScript
16 lines
406 B
TypeScript
export declare const headlessOption: {
|
|
name: string;
|
|
cliFlag: "disable-headless";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: boolean;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: boolean;
|
|
};
|
|
setConfig: (value: boolean) => void;
|
|
};
|