UNPKG
@recursyve/forms-frontend
Version:
beta (2.0.0-beta.4)
latest (2.0.0-beta.7)
9.0.6
9.0.5
9.0.4
9.0.3
9.0.1
9.0.0
2.0.0-beta.7
2.0.0-beta.6
2.0.0-beta.5
2.0.0-beta.4
2.0.0-beta.3
2.0.0-beta.2
2.0.0-beta.1
2.0.0-beta.0
1.0.2
1.0.1
1.0.0
0.3.2
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.8
github.com/Recursyve/forms-frontend
Recursyve/forms-frontend
@recursyve/forms-frontend
/
src
/
interfaces
/
form-storage.interface.d.ts
5 lines
(4 loc)
•
181 B
TypeScript
View Raw
1
2
3
4
5
export
declare
abstract
class
FormStorageInterface
{
abstract
upload
(
file
: File,
path
:
string
): Promise<
string
[]>;
abstract
getDownloadUrl
(
name
:
string
): Promise<
string
>; }