branch:
turndown-stub.ts
155 bytesRaw
class TurndownService {
  remove(_tags: string[]) {
    return this;
  }
  turndown(_html: string) {
    return "";
  }
}

export default TurndownService;