15 lines
444 B
TypeScript
15 lines
444 B
TypeScript
import { MultiVariableBuilder } from './multiVariableBuilder';
|
|
import { DataSourceVariableModel, VariableRefresh } from 'app/features/variables/types';
|
|
|
|
export class DatasourceVariableBuilder<T extends DataSourceVariableModel> extends MultiVariableBuilder<T> {
|
|
withRefresh(refresh: VariableRefresh) {
|
|
this.variable.refresh = refresh;
|
|
return this;
|
|
}
|
|
|
|
withRegEx(regex: any) {
|
|
this.variable.regex = regex;
|
|
return this;
|
|
}
|
|
}
|