This commit is contained in:
2024-03-18 13:38:16 +05:00
parent c9399c9408
commit 58df0badf7
114 changed files with 11334 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
type Device = "stream" | "touch" | "mobile" | "vr";
export default Device;
+14
View File
@@ -0,0 +1,14 @@
import Device from "./Device";
interface IProject {
id?: string;
name: string;
company: string;
city: string;
image: string;
stage?: number;
releaseDate: string;
devices: Device[];
}
export type {IProject};