@deno/kv
Version:
A Deno KV client library optimized for Node.js.
15 lines (14 loc) • 464 B
TypeScript
export declare namespace $.com.deno.kv.datapath {
type SnapshotReadStatus = "SR_UNSPECIFIED" | "SR_SUCCESS" | "SR_READ_DISABLED";
}
export type Type = $.com.deno.kv.datapath.SnapshotReadStatus;
export declare const num2name: {
readonly 0: "SR_UNSPECIFIED";
readonly 1: "SR_SUCCESS";
readonly 2: "SR_READ_DISABLED";
};
export declare const name2num: {
readonly SR_UNSPECIFIED: 0;
readonly SR_SUCCESS: 1;
readonly SR_READ_DISABLED: 2;
};