prettier/tests/typescript_comments/abstract_class.ts

9 lines
207 B
TypeScript

abstract class AbstractRule {
/**
* @deprecated
* Failures will be filtered based on `tslint:disable` comments by tslint.
* This method now does nothing.
*/
filterFailures() {}
}