UNPKG

sws-frontend

Version:

sws frontend project

8 lines (7 loc) 241 B
import { Role } from "../model/action"; export declare const roleapi: (baseurl: string) => { fetchAll: () => Promise<any>; fetchOne: (id: string) => Promise<any>; saveOne: (role: Role) => Promise<any>; }; export default roleapi;