UNPKG

@eslint-types/typescript-eslint

Version:
33 lines (31 loc) 831 B
export interface Schema0 { /** * Whether to allow `any` typed values in template expressions. */ allowAny?: boolean; /** * Whether to allow `array` typed values in template expressions. */ allowArray?: boolean; /** * Whether to allow `boolean` typed values in template expressions. */ allowBoolean?: boolean; /** * Whether to allow `nullish` typed values in template expressions. */ allowNullish?: boolean; /** * Whether to allow `number` typed values in template expressions. */ allowNumber?: boolean; /** * Whether to allow `regexp` typed values in template expressions. */ allowRegExp?: boolean; /** * Whether to allow `never` typed values in template expressions. */ allowNever?: boolean; } export type RestrictTemplateExpressionsRuleOptions = [Schema0?];