react-antd-admin-panel
Version:
Easy prototyping admin panel using React and Antd
19 lines (18 loc) • 450 B
TypeScript
import { ReactNode } from "react";
export default class SelectItem {
propsToAdd: string[];
constructor(key: string, value?: any, title?: ReactNode, text?: ReactNode);
_id: any;
id(v: string): this;
_key: any;
key(v: string): this;
_value: any;
value(v: string): this;
_text: any;
text(v: any): this;
_title: any;
title(v: any): this;
_render: any;
render(v: any): this;
getObject(): any;
}