-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.js
45 lines (45 loc) · 1.09 KB
/
questions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"use strict";
var __spreadArrays = (this && this.__spreadArrays) || function () {
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
for (var r = Array(s), k = 0, i = 0; i < il; i++)
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
r[k] = a[j];
return r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.questions = [
{
type: 'input',
name: 'firstname',
message: 'Enter first name'
},
{
type: 'input',
name: 'lastname',
message: 'Enter Lastname'
},
{
type: 'input',
name: 'phone',
message: 'Enter Phone Number'
},
{
type: 'input',
name: 'email',
message: 'Enter Your Email Address'
}
];
exports.getIdQuestions = [
{
type: 'input',
name: 'id',
message: 'Enter the contact id'
}
];
exports.updateContactQuestions = __spreadArrays([
{
type: 'input',
name: 'id',
message: 'Enter the contact id'
}
], exports.questions);