2024-06-14 09:20:43 +02:00
|
|
|
import type { IFeatureStrategiesReadModel } from './types/feature-strategies-read-model-type';
|
|
|
|
|
|
|
|
export class FakeFeatureStrategiesReadModel
|
|
|
|
implements IFeatureStrategiesReadModel
|
|
|
|
{
|
|
|
|
async getMaxFeatureEnvironmentStrategies(): Promise<{
|
|
|
|
feature: string;
|
|
|
|
environment: string;
|
|
|
|
count: number;
|
|
|
|
} | null> {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
async getMaxFeatureStrategies(): Promise<{
|
|
|
|
feature: string;
|
|
|
|
count: number;
|
|
|
|
} | null> {
|
|
|
|
return null;
|
|
|
|
}
|
2024-06-17 11:13:13 +02:00
|
|
|
|
|
|
|
async getMaxConstraintValues(): Promise<{
|
|
|
|
feature: string;
|
|
|
|
environment: string;
|
|
|
|
count: number;
|
|
|
|
} | null> {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
async getMaxConstraintsPerStrategy(): Promise<{
|
|
|
|
feature: string;
|
|
|
|
environment: string;
|
|
|
|
count: number;
|
|
|
|
} | null> {
|
|
|
|
return null;
|
|
|
|
}
|
2024-06-14 09:20:43 +02:00
|
|
|
}
|