10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
import {RestResponse} from "~/repositories/models/rest-response.model";
|
|
import {$axios} from "~/utils/api";
|
|
import {AxeWithQuestions} from "~/repositories/models/axe.model";
|
|
|
|
export default {
|
|
findAll() {
|
|
return $axios.get<RestResponse<AxeWithQuestions>>("/axes/search/me");
|
|
}
|
|
}
|