Upload index.ts
Browse files- _types/index.ts +7 -0
_types/index.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export interface Form {
|
| 2 |
+
brand_name: string;
|
| 3 |
+
description: string;
|
| 4 |
+
display_name: boolean;
|
| 5 |
+
industry: string;
|
| 6 |
+
style: string;
|
| 7 |
+
}
|