changed type path

This commit is contained in:
sprechtl 2022-10-10 00:07:34 +02:00
parent b49a4c3ddf
commit aa65cead2e
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import type {Note} from "../types";
import type {Note} from "./types";
export interface NoteRepository {
getNotes(): Promise<Note[]>;

View file

@ -1,4 +1,4 @@
import type {Note} from "../types";
import type {Note} from "./types";
import {parseCookies} from "nookies";
import type {NoteRepository} from "./NoteRepository";