view.d.ts 437 B

123456789
  1. import { CompositionComponent as CC } from '../runtime';
  2. import { ViewComposition } from '../spec';
  3. export type ViewOptions = Omit<ViewComposition, 'type'>;
  4. /**
  5. * @todo Propagate more options to children.(e.g. filter)
  6. * @todo Propagate encode options to children. This is useful for Matrix composition.
  7. * @todo Move this to runtime, do not treat it as a composition to cause confusion.
  8. */
  9. export declare const View: CC<ViewOptions>;