Version 2.1.0 - Passage sur Lavalink V4 et Moonlink.js
Some checks failed
Subsonics - Web/pipeline/head There was a failure building this commit
Subsonics - Web/pipeline/pr-main This commit looks good

This commit is contained in:
2024-04-16 16:05:21 +02:00
parent 960cbeabc3
commit 2241136729
43 changed files with 3298 additions and 91 deletions

View File

@ -0,0 +1,15 @@
type Data = Record<string, any>;
export declare class MoonlinkDatabase {
data: Data;
id: string;
constructor(clientId: string);
set<T>(key: string, value: T): void;
get<T>(key: string): T | undefined;
push<T>(key: string, value: T): void;
delete(key: string): boolean;
private updateData;
private getFilePath;
fetch(): void;
private save;
}
export {};