UNPKG

@ultipa-graph/ultipa-driver

Version:

NodeJS SDK for ultipa-server 5.2

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