UNPKG
@varasto/fs-storage
Version:
latest (3.0.0)
3.0.0
2.0.0
1.2.1
1.2.0
1.1.0
1.0.0
Varasto storage implementation that stores data to hard disk
rauli.dev/varasto
RauliL/varasto
@varasto/fs-storage
/
dist
/
storage.d.ts
7 lines
(6 loc)
•
263 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Storage
}
from
'@varasto/storage'
;
import
{
FileSystemStorageOptions
}
from
'./types'
;
/** * Creates new file system storage with given options. */
export
declare
const
createFileSystemStorage
:
(
options
?:
Partial
<
FileSystemStorageOptions
>
) =>
Storage
;