remove unused interface

This commit is contained in:
Mads Rasmussen
2024-02-08 15:33:17 +01:00
parent 600c5bec5f
commit c79bca51d3

View File

@@ -35,8 +35,3 @@ export interface UmbEntityDetailStore<T> extends UmbDataStore {
*/
save(data: T[]): Promise<void>;
}
export interface UmbContentStore<T> extends UmbEntityDetailStore<T> {
// TODO: make something that is specific for UmbContentStore, or then we should get rid of it. But for now i kept it as we might want this for rollback or other things specific to Content types.
save(data: T[]): Promise<void>;
}