Delete src/plugins/notesSearcher/noteStore.d.ts

This commit is contained in:
vishnyanetchereshnya 2024-06-24 22:45:31 +03:00 committed by GitHub
parent 71e3a5cc99
commit fec2638fd5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,21 +0,0 @@
/*
* Vencord, a Discord client mod
* Copyright (c) 2024 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { FluxStore } from "@webpack/types";
export type Note = {
loading: boolean;
note: string;
};
export type Notes = {
[userId: string]: Note;
};
export class NoteStore extends FluxStore {
getNotes(): Notes;
getNote(userId: string): Note;
}