UNPKG

241 BTypeScriptView Raw
1export declare const DEFAULT_STYLE_CLASS = "jp-DefaultStyle";
2export interface IElementRefProps<E extends HTMLElement> {
3 /** Ref handler to access the instance of the internal HTML element. */
4 elementRef?: (ref: E | null) => void;
5}