UNPKG

@ultipa-graph/ultipa-driver

Version:

NodeJS SDK for ultipa-server 5.1

11 lines (10 loc) 668 B
/// <reference types="node" /> import { Ttimezone, UltipaPropertyType } from "../../types/types"; import { PROPERTY_TYPE } from "./commont"; export declare namespace SERIALIZE { function serialize(v: string | string[] | object, type: UltipaPropertyType, subTypes: UltipaPropertyType[], timezone: Ttimezone): Buffer; function base(in_v: string, type: PROPERTY_TYPE, timezone: Ttimezone): Buffer; function list(vs: string[], types: PROPERTY_TYPE[], timezone: Ttimezone): Buffer; function map(v: object, types: PROPERTY_TYPE[], timezone: Ttimezone): Buffer; function set(vs: string[], types: PROPERTY_TYPE[], timezone: Ttimezone): Buffer; }