mingo
Version:
MongoDB query language for in-memory objects
14 lines (13 loc) • 352 B
TypeScript
import { Any, AnyObject, Options } from "../../../types";
interface InputExpr {
dateString: string;
timezone?: string;
format?: string;
onError?: Any;
onNull?: Any;
}
/**
* Converts a date/time string to a date object.
*/
export declare function $dateFromString(obj: AnyObject, expr: InputExpr, options: Options): Any;
export {};