
This commit updates the docs examples to be compatible with the `no-string-literal`, `object-literal-key-quotes` and `object-literal-shorthand` tslint rules. This is in preparation of updating the docs examples `tslint.json` to match the one generated for new Angular CLI apps in a future commit. PR Close #38143
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
// #docregion
|
|
import { QuestionBase } from './question-base';
|
|
|
|
export class TextboxQuestion extends QuestionBase<string> {
|
|
controlType = 'textbox';
|
|
}
|