cleanup, api, databuddy
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
declare type DataRecord = {
|
||||
id: string;
|
||||
};
|
||||
export declare type DataBuddyParams<T extends DataRecord> = T[];
|
||||
export declare class DataBuddy<T extends DataRecord> {
|
||||
data: T[];
|
||||
constructor(records: T[]);
|
||||
get: () => T[];
|
||||
getOne: (id: string) => T | null;
|
||||
update: (id: string, params: Partial<T>) => T | false;
|
||||
delete: (id: string) => boolean;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user