pavlitsky/vscode-yard

View on GitHub
src/parsers/definitions/base_parser.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { IEntity } from "../../types";

// Interface each parser should implement
export interface IBaseParser {
  isApplicable(): boolean;
  parse(): IEntity[];
}