mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 00:24:53 +00:00
Merge branch 'dev'
This commit is contained in:
@ -3,11 +3,15 @@ import { useDeleteNote } from "@/hooks/firebase/useDeleteNote";
|
||||
import { useGetNotes } from "@/hooks/firebase/useGetNotes";
|
||||
import { useUpdateNote } from "@/hooks/firebase/useUpdateNote";
|
||||
import { createContext, useContext, useState } from "react";
|
||||
import firestore, { FirebaseFirestoreTypes } from '@react-native-firebase/firestore';
|
||||
|
||||
export interface IBrainDump {
|
||||
id: number;
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
createdAt?: FirebaseFirestoreTypes.Timestamp;
|
||||
updatedAt?: FirebaseFirestoreTypes.Timestamp;
|
||||
creatorId?: string;
|
||||
}
|
||||
|
||||
interface IBrainDumpContext {
|
||||
|
||||
Reference in New Issue
Block a user