/// //@module: commonjs //@jsx: preserve // @Filename: 1.tsx //// declare module JSX { //// interface Element { } //// interface IntrinsicElements { //// } //// interface ElementAttributesProperty { props; } //// } //// interface IUser { //// Name: string; //// } //// interface IFetchUserProps { //// children: (user: IUser) => any; //// } //// function FetchUser(props: IFetchUserProps) { return undefined; } //// function UserName() { //// return ( //// //// { user => ( ////

{ user./**/ }

//// )} ////
//// ); //// } verify.completions({ marker: "", exact: undefined });