2016-03-05 17:53:34 -05:00
|
|
|
// #docregion
|
2016-05-03 14:06:32 +02:00
|
|
|
import { QuestionBase } from './question-base';
|
2016-03-05 17:53:34 -05:00
|
|
|
|
|
|
|
export class TextboxQuestion extends QuestionBase<string>{
|
|
|
|
controlType = 'textbox';
|
|
|
|
type:string;
|
|
|
|
|
|
|
|
constructor(options:{} = {}){
|
|
|
|
super(options);
|
|
|
|
this.type = options['type'] || '';
|
|
|
|
}
|
|
|
|
}
|