Skip to content

SerializableRegistry

const SerializableRegistry: object

Defined in: Serializable.ts:19

Read-only access to the serializable type registry.

delete(type): boolean

Remove a type from the registry.

string

boolean

entries(): IterableIterator<[string, (…args) => any]>

Iterate all registered [type, class] entries.

IterableIterator<[string, (…args) => any]>

get(type): ((…args) => any) | undefined

Look up a class by its type string.

string

((…args) => any) | undefined

has(type): boolean

Check if a type string is registered.

string

boolean