Remove missed floating file

This commit is contained in:
Caleb Rogers 2026-06-19 23:14:49 +02:00
parent 0245a90384
commit 60cf4c7f00
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
import APIClient from '../../functions/APIClient';
export type ChannelAggsType = {
total_items: {
value: number;
};
total_size: {
value: number;
};
total_duration: {
value: number;
value_str: string;
};
};
const loadChannelAggs = async (channelId: string) => {
return APIClient<ChannelAggsType>(`/api/channel/${channelId}/aggs/`);
};
export default loadChannelAggs;