react-native/local-cli/core/__fixtures__/commands.js

21 lines
293 B
JavaScript

/** @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',
},
];