ionic
Version:
A tool for creating and developing Ionic Framework mobile apps.
15 lines (14 loc) • 439 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const run_1 = require("./run");
class EmulateCommand extends run_1.RunCommand {
async getMetadata() {
const metadata = await super.getMetadata();
return {
...metadata,
name: 'emulate',
summary: 'Emulate an Ionic project on a simulator/emulator',
};
}
}
exports.EmulateCommand = EmulateCommand;
;