Added new trip plan creator and removed visit count stores
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
import { writable } from "svelte/store";
|
||||
|
||||
let value = 0;
|
||||
export const visitCount = writable(value);
|
||||
|
||||
@@ -10,3 +10,12 @@ export interface Adventure {
|
||||
imageUrl?: string | undefined;
|
||||
date?: string | undefined;
|
||||
}
|
||||
|
||||
export interface Trip {
|
||||
id: number;
|
||||
name: string;
|
||||
description: string;
|
||||
startDate: string;
|
||||
endDate: string;
|
||||
adventures?: Adventure[] | [];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user