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) • 357 B
TypeScript
import TwitterAdsSandboxReadOnly from './client.ads-sandbox.read';
/**
* Base Twitter ads sandbox client with read/write rights.
*/
export default class TwitterAdsSandboxReadWrite extends TwitterAdsSandboxReadOnly {
protected _prefix: string;
/**
* Get a client with only read rights.
*/
get readOnly(): TwitterAdsSandboxReadOnly;
}