UNPKG

@prettyfluid/zentinel

Version:

Integration helper for Zentinel

11 lines (10 loc) 417 B
import { ZentinelObject } from "../types"; import { Category } from "../types/categories"; import { Zentinel } from "./zentinel"; export declare class ZentinelDataMapper { private zentinel; category: Category; constructor(zentinel: Zentinel, category: Category); saveData<T>(data: ZentinelObject, corporation?: string): Promise<string>; loadData<T>(zentinelId: string): Promise<ZentinelObject>; }