maybeTooltip.d.ts 243 B

12345678
  1. import { TransformComponent as TC } from '../runtime';
  2. export type MaybeTooltipOptions = {
  3. channel: string | string[];
  4. };
  5. /**
  6. * Infer tooltip channel from specified channel.
  7. */
  8. export declare const MaybeTooltip: TC<MaybeTooltipOptions>;