mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-26 01:16:56 +01:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
'use strict';
|
|
|
|
const Select = require('./select');
|
|
|
|
class MultiSelect extends Select {
|
|
constructor(options) {
|
|
super({ ...options, multiple: true });
|
|
}
|
|
}
|
|
|
|
module.exports = MultiSelect;
|