Skip to content

Latest commit

 

History

History
61 lines (31 loc) · 1.01 KB

Internals.md

File metadata and controls

61 lines (31 loc) · 1.01 KB

@elribonazo/ridbDocs


@elribonazo/ridb / RIDBTypes / Internals

Class: Internals<T>

Represents the internals of a storage system, including the base storage and schema.

Type Parameters

T extends SchemaType

The schema type.

Constructors

new Internals()

new Internals<T>(internal): Internals<T>

Creates a new Internals instance with the provided base storage.

Parameters

internal: BaseStorage<T>

The base storage instance.

Returns

Internals<T>

Defined in

pkg/ridb_rust.d.ts:172

Properties

internal

readonly internal: BaseStorage<T>

The base storage instance.

Defined in

pkg/ridb_rust.d.ts:166


schema

readonly schema: T

The schema associated with the storage.

Defined in

pkg/ridb_rust.d.ts:176