Object that can be used to configured the rule.
| 38 | |
| 39 | /** Object that can be used to configured the rule. */ |
| 40 | interface RuleConfig { |
| 41 | [key: string]: { |
| 42 | argument: number; |
| 43 | required?: boolean; |
| 44 | properties: {[key: string]: string}; |
| 45 | excludeFiles?: string[]; |
| 46 | }[]; |
| 47 | } |
| 48 | |
| 49 | /** Represents a set of required and forbidden decorator properties. */ |
| 50 | type DecoratorRuleSet = { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…