noOutputOnPrefixRule.d.ts 355 B

1234567
  1. import * as Lint from 'tslint';
  2. import * as ts from 'typescript';
  3. export declare class Rule extends Lint.Rules.AbstractRule {
  4. static readonly metadata: Lint.IRuleMetadata;
  5. static readonly FAILURE_STRING = "In the class \"%s\", the output property \"%s\" should not be prefixed with on";
  6. apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
  7. }