UNPKG
@janitza/gridvis-client
Version:
latest (1.0.14)
1.0.14
1.0.13
1.0.12
1.0.11
A library to access all GridVis data
bitbucket.org/janitza/gridvis-client/
@janitza/gridvis-client
/
dist
/
device
/
DevicesEndpoint.d.ts
9 lines
(8 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
AxiosInstance
}
from
"axios"
;
import
{
IProject
}
from
"../project"
;
import
{
IDevice
}
from
"./IDevice"
;
export
declare
class
DevicesEndpoint
{
private
client;
constructor
(
client
:
AxiosInstance
);
list
(
project
:
string
|
IProject
):
Promise
<
IDevice
[]>; }