2024-03-18 13:58:05 +01:00
|
|
|
import type {
|
2024-02-12 08:39:51 +01:00
|
|
|
IStatTrafficUsageKey,
|
|
|
|
IStatTrafficUsage,
|
|
|
|
} from './traffic-data-usage-store-type';
|
2024-03-18 13:58:05 +01:00
|
|
|
import type { ITrafficDataUsageStore } from '../../types';
|
2024-02-12 08:39:51 +01:00
|
|
|
|
|
|
|
export class FakeTrafficDataUsageStore implements ITrafficDataUsageStore {
|
|
|
|
get(key: IStatTrafficUsageKey): Promise<IStatTrafficUsage> {
|
|
|
|
throw new Error('Method not implemented.');
|
|
|
|
}
|
|
|
|
getAll(query?: Object | undefined): Promise<IStatTrafficUsage[]> {
|
|
|
|
throw new Error('Method not implemented.');
|
|
|
|
}
|
|
|
|
exists(key: IStatTrafficUsageKey): Promise<boolean> {
|
|
|
|
throw new Error('Method not implemented.');
|
|
|
|
}
|
|
|
|
delete(key: IStatTrafficUsageKey): Promise<void> {
|
|
|
|
throw new Error('Method not implemented.');
|
|
|
|
}
|
|
|
|
deleteAll(): Promise<void> {
|
|
|
|
throw new Error('Method not implemented.');
|
|
|
|
}
|
|
|
|
destroy(): void {
|
|
|
|
throw new Error('Method not implemented.');
|
|
|
|
}
|
|
|
|
upsert(trafficDataUsage: IStatTrafficUsage): Promise<void> {
|
|
|
|
throw new Error('Method not implemented.');
|
|
|
|
}
|
|
|
|
}
|