@dialpad/dialtone
Version:
Dialpad's Dialtone design system monorepo
29 lines (28 loc) • 674 B
JavaScript
const n = {
items({ query: t }) {
const e = [
{
command: "dpm",
description: "Start a Dialpad Meeting"
},
{
command: "giphy",
parametersExample: "[text]",
description: "Post random animated GIF matching your text entry "
},
{
command: "meeting",
description: "Start a Dialpad Meeting"
},
{
command: "meeting2",
description: "Start a Dialpad Meeting"
}
];
return t.length === 0 ? e : e.filter((a) => a.command.toLowerCase().startsWith(t.toLowerCase()));
}
};
export {
n as default
};
//# sourceMappingURL=slash-command-suggestion.js.map