|
/** @format */
|
|
|
|
exports.single = {
|
|
func: () => {},
|
|
description: 'Test action',
|
|
name: 'test',
|
|
};
|
|
|
|
exports.multiple = [
|
|
{
|
|
func: () => {},
|
|
description: 'Test action #1',
|
|
name: 'test1',
|
|
},
|
|
{
|
|
func: () => {},
|
|
description: 'Test action #2',
|
|
name: 'test2',
|
|
},
|
|
];
|