Interface DeputyKeyvalStore

General key-value store. Used for storing single-variable data (currently active case, etc.)

interface DeputyKeyvalStore {
    key: string;
    value: {
        key: string;
        value: any;
    };
}

Properties

Properties

key: string
value: {
    key: string;
    value: any;
}