Interface Item

interface Item {
    createdAt: string;
    key: string;
    namespace: string[];
    updatedAt: string;
    value: Record<string, any>;
}

Hierarchy (view full)

Properties

createdAt: string
key: string
namespace: string[]
updatedAt: string
value: Record<string, any>