Description

Provides information about a key being removed from a RealtimeStore.

interface RealtimeStoreKeyRemovalInfo {
    key: string;
    removerInfo: UserInfo;
    sentServerTimeMilliseconds: number;
    store: GeneralDataStore;
    getTypeName(): string;
    isOfType(type): boolean;
    isSame(other): boolean;
}

Hierarchy (view full)

Properties

key: string

Description

Key of the property that was removed.

removerInfo: UserInfo

Description

User that removed the key.

sentServerTimeMilliseconds: number

Description

Provides the server timestamp (in milliseconds) of when the key was removed.

Description

The RealtimeStore that the key was removed from.

Methods

  • Returns string

    Description

    Returns the name of this object's type.

  • Parameters

    • type: string

    Returns boolean

    Description

    Returns true if the object matches or derives from the passed in type.

  • Parameters

    Returns boolean

    Description

    Returns true if this object is the same as other. Useful for checking if two references point to the same thing.

Generated using TypeDoc