mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
export default interface Project {
|
|
path: string;
|
|
name: string;
|
|
isApiServer: boolean;
|
|
isReact: boolean;
|
|
isTypeScript: boolean;
|
|
isDependency: boolean;
|
|
}
|