import * as ts from 'typescript'; import * as Lint from 'tslint'; /** * Check for any functions with the `async` modifier. If a function does not have the `async` * modifier then we defer to TSC to fail on `await` keywords since `await` has to be used * within an `async` context. */ export declare class Rule extends Lint.Rules.AbstractRule { static metadata: Lint.IRuleMetadata; apply(source: ts.SourceFile): Lint.RuleFailure[]; } //# sourceMappingURL=noAsyncAwaitRule.d.ts.map