reveal-sdk-node
Version:
RevealBI Node.js SDK
11 lines (10 loc) • 318 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;
};