Class: InMemoryFileSystem
A filesystem implementation that stores files in memory.
Implements
Constructors
constructor
• new InMemoryFileSystem()
Properties
files
• Private
files: Record
<string
, any
> = {}
Defined in
packages/core/src/storage/FileSystem.ts:25
Methods
access
▸ access(path
): Promise
<void
>
Parameters
Name | Type |
---|---|
path | string |
Returns
Promise
<void
>
Implementation of
Defined in
packages/core/src/storage/FileSystem.ts:38
mkdir
▸ mkdir(path
, options?
): Promise
<void
>
Parameters
Name | Type |
---|---|
path | string |
options? | any |
Returns
Promise
<void
>
Implementation of
Defined in
packages/core/src/storage/FileSystem.ts:44
readFile
▸ readFile(path
, options?
): Promise
<string
>
Parameters
Name | Type |
---|---|
path | string |
options? | any |
Returns
Promise
<string
>
Implementation of
Defined in
packages/core/src/storage/FileSystem.ts:31
writeFile
▸ writeFile(path
, content
, options?
): Promise
<void
>
Parameters
Name | Type |
---|---|
path | string |
content | string |
options? | any |
Returns
Promise
<void
>