templateAccessibilityTableScopeRule.d.ts 342 B

1234567
  1. import { IRuleMetadata, RuleFailure, Rules } from 'tslint/lib';
  2. import { SourceFile } from 'typescript';
  3. export declare class Rule extends Rules.AbstractRule {
  4. static readonly metadata: IRuleMetadata;
  5. static readonly FAILURE_MESSAGE = "Scope attribute can only be on <th> element";
  6. apply(sourceFile: SourceFile): RuleFailure[];
  7. }