proposit-core
    Preparing search index...

    Interface TCoreEntityChanges<T>

    Added/modified/removed entities of one type within a single mutation.

    interface TCoreEntityChanges<T> {
        added: T[];
        modified: T[];
        removed: T[];
    }

    Type Parameters

    • T
    Index

    Properties

    added: T[]
    modified: T[]
    removed: T[]