Initial boiler plate project
This commit is contained in:
22
node_modules/next/dist/lib/eslint/getESLintPromptValues.d.ts
generated
vendored
Normal file
22
node_modules/next/dist/lib/eslint/getESLintPromptValues.d.ts
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
export declare const getESLintStrictValue: (cwd: string) => Promise<{
|
||||
title: string;
|
||||
recommended: boolean;
|
||||
config: {
|
||||
extends: string | string[];
|
||||
};
|
||||
}>;
|
||||
export declare const getESLintPromptValues: (cwd: string) => Promise<({
|
||||
title: string;
|
||||
recommended: boolean;
|
||||
config: {
|
||||
extends: string | string[];
|
||||
};
|
||||
} | {
|
||||
title: string;
|
||||
config: {
|
||||
extends: string;
|
||||
};
|
||||
} | {
|
||||
title: string;
|
||||
config: null;
|
||||
})[]>;
|
||||
Reference in New Issue
Block a user