Interface iGetMapValuesSuccessResponse

interface iGetMapValuesSuccessResponse {
    values: {
        mapId: string;
        values: {
            [key: string]: iValueStore;
        };
    }[];
}

Implemented by

Properties

Properties

values: {
    mapId: string;
    values: {
        [key: string]: iValueStore;
    };
}[]