Initial scaffold: Expo SDK 56, expo-router, expo-sqlite, NativeWind
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
export type IncidentStatus = "open" | "resolved";
|
||||
|
||||
export interface Incident {
|
||||
id: string;
|
||||
title: string;
|
||||
service: string;
|
||||
symptom: string;
|
||||
rootCause: string;
|
||||
fix: string;
|
||||
status: IncidentStatus;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
tags: string[];
|
||||
}
|
||||
|
||||
export type IncidentDraft = Omit<Incident, "id" | "createdAt" | "updatedAt">;
|
||||
Reference in New Issue
Block a user