Interface RealtimeFeaturePatch<TFeature>

interface RealtimeFeaturePatch<TFeature> {
    feature: TFeature;
    id: FeatureId;
    sourceId?: string;
    updatedAt?: string;
    version?: number;
}

Type Parameters

  • TFeature = unknown

Hierarchy (view full)

Properties

feature: TFeature
sourceId?: string
updatedAt?: string
version?: number