Files
grafana/public/app/features/variables/shared/testing/intervalVariableBuilder.ts
kay delaney cadc551a3c Chore: Remove deprecated re-exported template variable types (#87459)
Chore: Remove deprecated re-exported template varible types
2024-05-10 12:00:41 +01:00

26 lines
611 B
TypeScript

import { IntervalVariableModel, VariableRefresh } from '@grafana/data';
import { OptionsVariableBuilder } from './optionsVariableBuilder';
export class IntervalVariableBuilder extends OptionsVariableBuilder<IntervalVariableModel> {
withRefresh(refresh: VariableRefresh) {
this.variable.refresh = refresh;
return this;
}
withAuto(auto: boolean) {
this.variable.auto = auto;
return this;
}
withAutoCount(autoCount: number) {
this.variable.auto_count = autoCount;
return this;
}
withAutoMin(autoMin: string) {
this.variable.auto_min = autoMin;
return this;
}
}