UNPKG

stitch-ui

Version:

27 lines (26 loc) 624 B
export default { rules: { getCompletions(editor, session, pos, prefix, callback) { callback(null, [ { name: "%%args.to", value: "%%args.to", score: 1, meta: "recipient's phone number, e.g. '+15551112222'" }, { name: "%%args.from", value: "%%args.from", score: 1, meta: "sender's phone number, e.g. '+15551112222'" }, { name: "%%args.body", value: "%%args.body", score: 1, meta: "message body, e.g. 'hello from twilio'" } ]); } } };