Interface Snapshot<T>

interface Snapshot<T> {
    data?: T;
    id: string;
    m: SnapshotMeta;
    type: string;
    v: number;
}

Type Parameters

  • T = any

Properties

Properties

data?: T
id: string
type: string
v: number