mirror of
https://github.com/Unleash/unleash.git
synced 2025-03-04 00:18:40 +01:00
Upgrades biome to 1.6.1, and updates husky pre-commit hook. Most changes here are making type imports explicit.
30 lines
1017 B
TypeScript
30 lines
1017 B
TypeScript
import type {
|
|
IStatTrafficUsageKey,
|
|
IStatTrafficUsage,
|
|
} from './traffic-data-usage-store-type';
|
|
import type { ITrafficDataUsageStore } from '../../types';
|
|
|
|
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.');
|
|
}
|
|
}
|