import type { Parjser } from "./parjser"; import { ParjserBase } from "./parser"; export abstract class Combinated extends ParjserBase implements Parjser { constructor(protected source: CombinatorInput) { super(); } } export type CombinatorInput = ParjserBase & Parjser;