if-show.d.ts 229 B

12
  1. import { Selection } from './selection';
  2. export declare function ifShow<T extends Selection, R = any>(show: boolean, container: T, creator: (group: T) => R, removeChildren?: boolean, removeHandler?: (group: T) => any): null | R;