@patternmeshjs/core
    Preparing search index...

    Type Alias CompiledEntity<S, Id>

    type CompiledEntity<
        S extends SchemaRecord = SchemaRecord,
        Id extends readonly (keyof S & string)[] = readonly (keyof S & string)[],
    > = {
        _identityKeys?: Id;
        "[COMPILED_ENTITY]": true;
        runtime: EntityRuntime;
    }

    Type Parameters

    Index

    Properties

    _identityKeys?: Id

    Phantom: preserves Id for type-level consumers

    "[COMPILED_ENTITY]": true
    runtime: EntityRuntime