maybeTitle.d.ts 226 B

12345678
  1. import { TransformComponent as TC } from '../runtime';
  2. export type MaybeTitleOptions = {
  3. channel?: string;
  4. };
  5. /**
  6. * Infer title channel from x-position channel.
  7. */
  8. export declare const MaybeTitle: TC<MaybeTitleOptions>;