ng-xtend API documentation
    Preparing search index...

    Type Alias ManagedData

    A Managed data is a structure whose lifecycle (creation, destruction, persistance) is managed. It usually contains a unique identifier (usually _id).

    type ManagedData = {
        _id?: string;
        [keys: string]:
            | string
            | number
            | boolean
            | ManagedData
            | Date
            | null
            | undefined;
    }

    Indexable

    • [keys: string]: string | number | boolean | ManagedData | Date | null | undefined
    Index

    Properties

    Properties

    _id?: string