📄 InferTypesFromRule.ts
¶
📊 Analysis Summary¶
Metric | Count |
---|---|
📦 Imports | 2 |
📑 Type Aliases | 2 |
📚 Table of Contents¶
🛠️ File Location:¶
📂 packages/utils/src/eslint-utils/InferTypesFromRule.ts
📦 Imports¶
Name | Source |
---|---|
RuleCreateFunction |
../ts-eslint |
RuleModule |
../ts-eslint |
Type Aliases¶
InferOptionsTypeFromRule<T>
¶
/* * Uses type inference to fetch the Options type from the given RuleModule /
type InferOptionsTypeFromRule<T> = T extends RuleModule<infer _MessageIds, infer Options>
? Options
: T extends RuleCreateFunction<infer _MessageIds, infer Options>
? Options
: unknown;
InferMessageIdsTypeFromRule<T>
¶
/* * Uses type inference to fetch the MessageIds type from the given RuleModule /
type InferMessageIdsTypeFromRule<T> = T extends RuleModule<infer MessageIds, infer _TOptions>
? MessageIds
: T extends RuleCreateFunction<infer MessageIds, infer _TOptions>
? MessageIds
: unknown;