init
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
type Device = "stream" | "touch" | "mobile" | "vr";
|
||||
|
||||
export default Device;
|
||||
@@ -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};
|
||||
Reference in New Issue
Block a user