@nightingale-elements/nightingale-new-core
Version:
Base Elements for Nightingale Components
10 lines • 564 B
TypeScript
import NightingaleBaseElement, { Constructor } from "../../../nightingale-base-element";
import { WithHighlightInterface } from "..";
import { WithZoomInterface } from "../../withZoom";
export interface WithSVGHighlightInterface extends WithZoomInterface, WithHighlightInterface {
createHighlightGroup: () => void;
updateHighlight: () => void;
}
declare const withSVGHighlight: <T extends Constructor<NightingaleBaseElement>>(superClass: T) => Constructor<WithSVGHighlightInterface> & T;
export default withSVGHighlight;
//# sourceMappingURL=index.d.ts.map