export class IsTTYError extends Error {
  constructor(msg: string) {
    super(msg);
  }
}
