-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcordova_file.mli
29 lines (29 loc) · 1.5 KB
/
cordova_file.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(* -------------------------------------------------------------------------- *)
(* !! Read the documentation to know which directory are available on your
* plateform !!
*)
val application_directory : unit -> string
[@@js.get "cordova.file.applicationDirectory"]
val application_storage_directory : unit -> string
[@@js.get "cordova.file.applicationStorageDirectory"]
val data_directory : unit -> string
[@@js.get "cordova.file.dataDirectory"]
val cache_directory : unit -> string
[@@js.get "cordova.file.cacheDirectory"]
val external_application_storage_directory : unit -> string
[@@js.get "cordova.file.externalApplicationStorageDirectory"]
val external_data_directory : unit -> string
[@@js.get "cordova.file.externalDataDirectory"]
val external_cache_directory : unit -> string
[@@js.get "cordova.file.externalCacheDirectory"]
val external_root_directory : unit -> string
[@@js.get "cordova.file.externalRootDirectory"]
val temp_directory : unit -> string
[@@js.get "cordova.file.tempDirectory"]
val synced_data_directory : unit -> string
[@@js.get "cordova.file.syncedDataDirectory"]
val documents_directory : unit -> string
[@@js.get "cordova.file.documentsDirectory"]
val shared_directory : unit -> string
[@@js.get "cordova.file.sharedDirectory"]
(* -------------------------------------------------------------------------- *)