@eslint-types/import
Version:
TypeScript definitions for eslint-define-config
23 lines (21 loc) • 418 B
TypeScript
export interface Schema0 {
/**
* @minItems 1
*/
zones?: [
{
target?: string | string[];
from?: string | string[];
except?: string[];
message?: string;
},
...Array<{
target?: string | string[];
from?: string | string[];
except?: string[];
message?: string;
}>,
];
basePath?: string;
}
export type NoRestrictedPathsRuleOptions = [Schema0?];