Skip to content

Commit baef808

Browse files
authored
Merge pull request #1 from oslabs-beta/feature/MUIInterface
Sean 4/19 created MUIType interface in Interfaces.ts
2 parents e4e6446 + 025bee3 commit baef808

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

app/src/interfaces/Interfaces.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,20 @@ export interface HTMLType {
101101
framework: string;
102102
nestable: boolean;
103103
}
104+
export interface MUIType {
105+
id: number;
106+
tag: string;
107+
name: string;
108+
style: any;
109+
placeHolderShort: string | React.JSX.Element;
110+
placeHolderLong: string;
111+
// ? == optional type part of icon, cant comment out icon and it works
112+
// Icon?: any;
113+
icon?: any;
114+
framework: string;
115+
nestable: boolean;
116+
imports: any[];
117+
}
104118
export interface DragItem extends DragObjectWithType {
105119
newInstance: boolean;
106120
instanceType: string;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactype",
3-
"version": "20.0.0 by Yameng Zhang, Brian Yan, Cyrus Burns, John Wage",
3+
"version": "21.0.0 by Austin Alvarez, Heather Pfeiffer, Sean Ryan, Jesse Wowczuk, Zack Vandiver",
44
"description": "Prototyping tool for React/Typescript Applications.",
55
"private": true,
66
"main": "app/.electron/main.js",

0 commit comments

Comments
 (0)