@jupyter/web-components
Version:
A component library for building extensions in Jupyter frontends.
10 lines (9 loc) • 344 B
TypeScript
import { ValueConverter } from '@microsoft/fast-element';
/**
* A {@link ValueConverter} that converts to and from `Date` values.
* @remarks
* This converter allows for nullable Date, returning `null` if the
* input was `null`, `undefined`, or a non-parsable date.
* @public
*/
export declare const nullableDateConverter: ValueConverter;