mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import TwitterApiSubClient from '../client.subclient';
|
|
/**
|
|
* Base Twitter v2 labs client with only read right.
|
|
*/
|
|
export default class TwitterApiv2LabsReadOnly extends TwitterApiSubClient {
|
|
protected _prefix: string;
|
|
}
|