spaceLayer.d.ts 284 B

1234567
  1. import { CompositionComponent as CC } from '../runtime';
  2. import { SpaceLayerComposition } from '../spec';
  3. export type SpaceLayerOptions = Omit<SpaceLayerComposition, 'type'>;
  4. /**
  5. * @todo Propagate more options to children.
  6. */
  7. export declare const SpaceLayer: CC<SpaceLayerOptions>;