* Parses the given `value` and return the associated timestamp. * @param value - the value to parse (usually comes from the data) * @param [format] - the expected data format
(this: DateAdapter<T>, value: unknown, format?: string)
| 26 | * @param [format] - the expected data format |
| 27 | */ |
| 28 | parse(this: DateAdapter<T>, value: unknown, format?: string): number | null; |
| 29 | /** |
| 30 | * Returns the formatted date in the specified `format` for a given `timestamp`. |
| 31 | * @param timestamp - the timestamp to format |
no outgoing calls
no test coverage detected