export type AnsiOutput = string; export class TerminalSerializer { static serialize(output: string): AnsiOutput { return output; } }