@visactor/react-vrender
Version:
## Description
10 lines (9 loc) • 482 B
TypeScript
import type { IStage, IStageParams, IOption3D } from '@visactor/vrender';
import React from 'react';
export interface StageProps extends Omit<IStageParams, 'autoRender' | 'container'>, Omit<React.HTMLAttributes<HTMLDivElement>, 'id' | 'title'> {
containerId?: string | undefined;
containerTitle?: string | undefined;
children?: any;
stage3dOptions?: IOption3D;
}
export declare const Stage: React.ForwardRefExoticComponent<StageProps & React.RefAttributes<IStage>>;