mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
12 lines
345 B
TypeScript
12 lines
345 B
TypeScript
import TwitterApiv2LabsReadOnly from './client.v2.labs.read';
|
|
/**
|
|
* Base Twitter v2 labs client with read/write rights.
|
|
*/
|
|
export default class TwitterApiv2LabsReadWrite extends TwitterApiv2LabsReadOnly {
|
|
protected _prefix: string;
|
|
/**
|
|
* Get a client with only read rights.
|
|
*/
|
|
get readOnly(): TwitterApiv2LabsReadOnly;
|
|
}
|