import { UUIDType } from "./types"; export abstract class BaseHandler { abstract set(uuidType: UUIDType, uuidValue: string): Promise; abstract get(uuidType: UUIDType): Promise; abstract delete(uuidType: UUIDType): Promise; abstract clear(): Promise; }