UNPKG

334 BPlain TextView Raw
1// Copyright (c) Jupyter Development Team.
2// Distributed under the terms of the Modified BSD License.
3
4export const DEFAULT_STYLE_CLASS = 'jp-DefaultStyle';
5
6export interface IElementRefProps<E extends HTMLElement> {
7 /** Ref handler to access the instance of the internal HTML element. */
8 elementRef?: (ref: E | null) => void;
9}