{"version":3,"file":"dl-date-adapter-number.d.ts","sources":["dl-date-adapter-number.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;;;AACA","sourcesContent":["import { DlDateAdapter } from './dl-date-adapter';\r\n/**\r\n * Adapts `number` to be usable as a date by date/time components that work with dates.\r\n * No op adapter.\r\n **/\r\nexport declare class DlDateAdapterNumber extends DlDateAdapter<number> {\r\n    /**\r\n     * Returns the specified number.\r\n     * @param milliseconds\r\n     *  a moment time time.\r\n     * @returns\r\n     *  the specified moment in time.\r\n     */\r\n    fromMilliseconds(milliseconds: number): number;\r\n    /**\r\n     * Returns the specified number.\r\n     * @param value\r\n     *  a moment time time or `null`\r\n     * @returns\r\n     *  the specified moment in time or `null`\r\n     */\r\n    toMilliseconds(value: number | null): number | null;\r\n}\r\n"]}