reveal-sdk-node
Version:
RevealBI Node.js SDK
13 lines (12 loc) • 475 B
TypeScript
export declare type nullableString = string | null;
export declare type nullableDate = Date | null;
export interface IKnownType {
getType(): string;
}
export declare function dateFromJson(json: any): Date | null;
export declare function dateToJson(date: Date): {
_type: string;
value: string;
};
export declare function copyEntriesToJsonObject(dict: any, jsonObj: any): void;
export declare function createDictionaryFromJsonObject(jsonObj: any): any;