UNPKG

quill.api-test

Version:

a twitter bot api for node.js this os one option to bypass the pay wall for twiters api

26 lines (20 loc) 566 B
'use strict'; const { version } = require('../../package.json'); /** * Options for a client. * @typeof {Object} clientOptions * @property {browser} [browser=''] The browser used on creation of driver. */ class Options extends null { static userAgentAppendix = `Quill.js/${version}`; static createDefault() { return { driver: 'ie', Headless: true, ProxyClnt: 'null', loopDelayLength: 200, MaxloopTterations: 100, } } } module.exports = Options;