14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
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 {};
|