TypeScript/tests/cases/fourslash/tsxQuickInfo3.ts

31 lines
655 B
TypeScript
Raw Normal View History

2016-11-08 20:07:17 +01:00
/// <reference path='fourslash.ts' />
//@Filename: file.tsx
// @jsx: preserve
// @noLib: true
//// interface OptionProp {
//// propx: 2
//// }
//// class Opt extends React.Component<OptionProp, {}> {
//// render() {
//// return <div>Hello</div>;
//// }
//// }
//// const obj1: OptionProp = {
//// propx: 2
//// }
//// let y1 = <O/*1*/pt pro/*2*/px={2} />;
//// let y2 = <Opt {...ob/*3*/j1} />;
//// let y2 = <Opt {...obj1} pr/*4*/opx />;
verify.quickInfos({
1: "class Opt",
2: "(JSX attribute) propx: number",
3: "const obj1: OptionProp",
4: "(JSX attribute) propx: true"
});