UNPKG
waterbase
Version:
latest (0.0.2)
0.0.2
SDK for waterbase-server
github.com/sinewtech/waterbase-sdk
sinewtech/waterbase-sdk
waterbase
/
lib
/
services
/
Storage.ts
8 lines
(6 loc)
•
186 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
Service
from
'../Service'
;
import
File
from
'../helpers/File'
;
class
Storage
extends
Service
{ file =
(
path
:
string
) =>
new
File
(
this
.
client
, path); }
export
=
Storage
;