mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
import { AxiosPromise } from 'axios';
|
|
|
|
import { Features } from '../types';
|
|
|
|
import { AXIOS } from './endpoints';
|
|
|
|
export function readFeatures(): AxiosPromise<Features> {
|
|
return AXIOS.get('/features');
|
|
}
|