UNPKG

@zenvia/sdk

Version:

This SDK for [Node.js](https://nodejs.org/) was created based on the [Zenvia](https://www.zenvia.com/) [API](https://zenvia.github.io/zenvia-openapi-spec/).

9 lines (8 loc) 225 B
import { IContent, ContentType } from '../../types'; /** * Implementation of base content. */ export declare abstract class AbstractContent implements IContent { type: ContentType; constructor(type: ContentType); }