mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
18 lines
616 B
JavaScript
18 lines
616 B
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const client_subclient_1 = __importDefault(require("../client.subclient"));
|
|
const globals_1 = require("../globals");
|
|
/**
|
|
* Base Twitter v2 labs client with only read right.
|
|
*/
|
|
class TwitterApiv2LabsReadOnly extends client_subclient_1.default {
|
|
constructor() {
|
|
super(...arguments);
|
|
this._prefix = globals_1.API_V2_LABS_PREFIX;
|
|
}
|
|
}
|
|
exports.default = TwitterApiv2LabsReadOnly;
|