@ultipa-graph/ultipa-driver
Version:
NodeJS SDK for ultipa-server 5.2
25 lines (24 loc) • 1.11 kB
TypeScript
import * as ULTIPA from "../types/types";
import { DecimalExtra } from "../types/types";
export declare namespace PropertyUtils {
const IsBasePropertyType: (...types: ULTIPA.UltipaPropertyType[]) => boolean;
const propertyGet: (type: ULTIPA.UltipaPropertyType) => string;
const PropertyTypeDescValid: (type: ULTIPA.UltipaPropertyType, subTypes?: ULTIPA.UltipaPropertyType[]) => {
ok: boolean;
msg: string;
};
const GetPropertyTypeDesc: (type: ULTIPA.UltipaPropertyType, subTypes?: ULTIPA.UltipaPropertyType[], extra?: DecimalExtra) => string;
const GetPropertyType: (typeDesc: string) => {
type: ULTIPA.UltipaPropertyType;
subTypes?: ULTIPA.UltipaPropertyType[];
subTypesDesc?: string[];
decimalExtra?: DecimalExtra;
};
const GetPropertyBaseType: (typeDesc: string) => {
type: ULTIPA.UltipaPropertyType;
subTypes?: ULTIPA.UltipaPropertyType[];
subTypesDesc?: string[];
decimalExtra?: DecimalExtra;
};
const GetPropertyTypeToString: (typeDescUpper: string) => void;
}