| 12 | import ts from 'typescript'; |
| 13 | |
| 14 | export class Rule extends AbstractRule { |
| 15 | override apply(sourceFile: ts.SourceFile): RuleFailure[] { |
| 16 | const typedefWalker = new TypedefWalker(sourceFile, this.getOptions()); |
| 17 | return this.applyWithWalker(typedefWalker); |
nothing calls this directly
no outgoing calls
no test coverage detected