22 lines
500 B
JavaScript
22 lines
500 B
JavaScript
exports.__esModule = true;
|
|
var Integration = {
|
|
name: 'Deck',
|
|
description: "Control the deck you're using.",
|
|
actions: [
|
|
{
|
|
id: 'changepage',
|
|
name: 'Change page'
|
|
},
|
|
{
|
|
id: 'setbackground',
|
|
name: 'Set key background color'
|
|
},
|
|
{
|
|
id: 'settext',
|
|
name: 'Set key text'
|
|
}
|
|
],
|
|
main: require('./deck')
|
|
};
|
|
module.exports = Integration;
|
|
//# sourceMappingURL=integration.js.map
|