transferum
Preparing search index...
StorageInterface
Interface StorageInterface<TInput, TOutput>
Bidirectional storage with size tracking, clear, and reset.
interface
StorageInterface
<
TInput
,
TOutput
>
{
size
:
number
;
clear
()
:
void
;
read
()
:
TOutput
|
undefined
;
reset
()
:
void
;
write
(
data
:
TInput
)
:
void
;
}
Type Parameters
TInput
TOutput
Hierarchy (
View Summary
)
IOFlowInterface
<
TInput
,
TOutput
>
StorageInterface
Implemented by
LatestStorage
QueueStorage
StackStorage
Index
Properties
size
Methods
clear
read
reset
write
Properties
Readonly
size
size
:
number
Methods
clear
clear
()
:
void
Returns
void
read
read
()
:
TOutput
|
undefined
Returns
TOutput
|
undefined
reset
reset
()
:
void
Returns
void
write
write
(
data
:
TInput
)
:
void
Parameters
data
:
TInput
Returns
void
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
size
Methods
clear
read
reset
write
transferum
Loading...
Bidirectional storage with size tracking, clear, and reset.