UNPKG

react-antd-admin-panel

Version:

Easy prototyping admin panel using React and Antd

15 lines (14 loc) 317 B
export default class StepsItem { constructor(); _done: boolean; done(v: boolean): this; _title: string; title(v: string): this; _content: any; content(v: (next: any) => any): this; getObject(): { done: boolean; title: string; content: (n: any) => any; }; }