@jupyter/web-components
Version:
A component library for building extensions in Jupyter frontends.
16 lines (15 loc) • 497 B
TypeScript
import { FormAssociated, FoundationElement } from '@microsoft/fast-foundation';
declare class _DateField extends FoundationElement {
}
interface _DateField extends FormAssociated {
}
declare const FormAssociatedDateField_base: typeof _DateField;
/**
* A form-associated base class for the {@link @jupyter/web-components#(DateField:class)} component.
*
* @internal
*/
export declare class FormAssociatedDateField extends FormAssociatedDateField_base {
proxy: HTMLInputElement;
}
export {};