export interface Pipe { name: string; args: string[]; } export default class PipeParser { /** * Parse a string of pipes into an array of Pipe objects. */ static parse(pipes: string): Pipe[]; }