functional-models
    Preparing search index...

    Type Alias PrimaryKeyGenerator

    PrimaryKeyGenerator: <
        TValue extends PrimaryKeyType,
        TData extends DataDescription,
    >(
        value: TValue,
        modelData: CreateParams<TData>,
        instance: ModelInstance<TData>,
    ) => Promise<PrimaryKeyType>

    A function that can generate a primary key for a model.

    Type Declaration