import { Role } from '@/api/admin/roles/getRoles'; import http from '@/api/http'; export default (name: string, description?: string): Promise => { return new Promise((resolve, reject) => { http.post('/api/application/roles', { name, description, }) .then(({ data }) => resolve(data.attributes)) .catch(reject); }); };