UNPKG

@csegames/camelot-unchained

Version:

Camelot Unchained Client Library

11 lines (10 loc) 269 B
export declare class Store { private prefix; constructor(prefix?: string); setPrefix: (prefix: string) => void; set: (key: string, value: any) => void; get: <T>(key: string) => T; clear: () => void; private prefixed; } export default Store;