Files
oneuptime/Scripts/Types/Project.ts
Nawaz Dhandala c65acc2838 fix compile
2022-04-13 16:57:57 +01:00

9 lines
175 B
TypeScript

export default interface Project {
path: string;
name: string;
isApiServer: boolean;
isReact: boolean;
isTypeScript: boolean;
isDependency: boolean;
}