twitter-api-v2-patch
Version:
Strongly typed, full-featured, light, versatile yet powerful Twitter API v1.1 and v2 client for Node.js.
12 lines (11 loc) • 313 B
TypeScript
import TwitterAdsReadOnly from './client.ads.read';
/**
* Base Twitter ads client with read/write rights.
*/
export default class TwitterAdsReadWrite extends TwitterAdsReadOnly {
protected _prefix: string;
/**
* Get a client with only read rights.
*/
get readOnly(): TwitterAdsReadOnly;
}