UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

16 lines (15 loc) 575 B
import React from 'react'; import { type RendererProps, type Schema } from 'jamis-core'; import type { VBoxRow, VBoxSchema } from './types'; interface VBoxProps extends RendererProps, Omit<VBoxSchema, 'className'> { } export default class VBox extends React.Component<VBoxProps, object> { static propsList: Array<string>; static defaultProps: Partial<VBoxProps>; renderChild(region: string, node: Schema): JSX.Element; renderCell(row: VBoxRow, key: any): JSX.Element; render(): JSX.Element; } export declare class VBoxRenderer extends VBox { } export {};