import http from '@/api/http'; import { Node, rawDataToNode } from '@/api/admin/nodes/getNodes'; export default (name: string, description: string | null, include: string[] = []): Promise => { return new Promise((resolve, reject) => { http.post('/api/application/nodes', { name, description, }, { params: { include: include.join(',') } }) .then(({ data }) => resolve(rawDataToNode(data))) .catch(reject); }); };