{"version":3,"file":"dl-date-adapter-native.d.ts","sources":["dl-date-adapter-native.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["import { DlDateAdapter } from './dl-date-adapter';\r\n/**\r\n * Adapts `Date` to be usable as a date by date/time components that work with dates.\r\n **/\r\nexport declare class DlDateAdapterNative extends DlDateAdapter<Date> {\r\n    /**\r\n     * Create a new instance of a `moment` type from milliseconds.\r\n     * @param milliseconds\r\n     *  a time value as milliseconds (local time zone)\r\n     * @returns\r\n     *  an instance of `moment` for the specified moment in time.\r\n     */\r\n    fromMilliseconds(milliseconds: number): Date;\r\n    /**\r\n     * Returns a moment in time value as milliseconds (local time zone).\r\n     * @param value\r\n     *  a Date or null.\r\n     * @returns\r\n     *  a `value.getTime()` result for the specified `Date` or `null`.\r\n     */\r\n    toMilliseconds(value: Date | null): number | null;\r\n}\r\n"]}