1
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
348 B

import { TextBoxVariableModel } from 'app/features/variables/types';
import { OptionsVariableBuilder } from './optionsVariableBuilder';
export class TextBoxVariableBuilder<T extends TextBoxVariableModel> extends OptionsVariableBuilder<T> {
withOriginalQuery(original: string) {
this.variable.originalQuery = original;
return this;
}
}