react-antd-admin-panel
Version:
Easy prototyping admin panel using React and Antd
31 lines (30 loc) • 707 B
TypeScript
import { ReactNode } from "react";
export default class Item {
propsToAdd: string[];
constructor(key: any, value?: any, title?: ReactNode, text?: ReactNode);
_id: any;
id(v: any): this;
_key: any;
key(v: any): this;
_text: any;
text(v: any): this;
_type: any;
type(v: any): this;
_value: any;
value(v: any): this;
_style: any;
style(v: any): this;
_title: any;
title(v: any): this;
_object: any;
object(v: any): this;
_render: any;
render(v: any): this;
_access: any;
access(v: any): this;
_description: any;
description(v: string): this;
_disabled: any;
disabled(v: any): this;
getObject(): any;
}