@rekurt/openkline - v0.2.0
    Preparing search index...

    Interface IndicatorDiff

    interface IndicatorDiff {
        added: string[];
        changed: boolean;
        kept: string[];
        removed: string[];
    }
    Index

    Properties

    added: string[]

    Ids present in next but missing in prev.

    changed: boolean

    True if added.length > 0 || removed.length > 0.

    kept: string[]

    Ids present in both prev and next.

    removed: string[]

    Ids present in prev but missing in next.