import*as Lint from 'tslint';import*as ts from 'typescript';import{ AsyncSuffixWalker } from './walkers/async_suffix';export class Rule extends Lint.Rules.AbstractRule {publicapply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {return this.applyWithWalker(newAsyncSuffixWalker(sourceFile,this.getOptions()));}}