mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
23 lines
490 B
TypeScript
23 lines
490 B
TypeScript
// @filename: file.tsx
|
|
// @jsx: preserve
|
|
// @noLib: true
|
|
// @skipLibCheck: true
|
|
// @libFiles: react.d.ts,lib.d.ts
|
|
|
|
import React = require('react');
|
|
|
|
type TextProps = { editable: false }
|
|
| { editable: true, onEdit: (newText: string) => void };
|
|
|
|
class TextComponent extends React.Component<TextProps, {}> {
|
|
render() {
|
|
return <span>Some Text..</span>;
|
|
}
|
|
}
|
|
|
|
// Error
|
|
let x = <TextComponent editable={true} />
|
|
|
|
const textProps: TextProps = {
|
|
editable: false
|
|
}; |