Update dependencies

This commit is contained in:
2024-03-10 17:22:04 -04:00
parent 052cae2c2e
commit 6ff1a69e2b
2 changed files with 541 additions and 484 deletions

View File

@@ -1,4 +1,5 @@
import { defineStore } from 'pinia'; import { defineStore } from 'pinia';
import { Databases } from 'appwrite';
export const useCounterStore = defineStore('counter', { export const useCounterStore = defineStore('counter', {
state: () => ({ state: () => ({
@@ -19,12 +20,14 @@ export const useCounterStore = defineStore('counter', {
}); });
export interface Task { export interface Task {
id: number; id: string;
title: string; title: string;
description: string; description: string;
iconsrc?: string; taskLabels: string[];
due: Date; dueDate: Date;
created: Date; created: Date;
parentId: string;
completed: boolean;
} }
const getSampleData = () => [ const getSampleData = () => [

1016
yarn.lock

File diff suppressed because it is too large Load Diff