mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
28 lines
628 B
TypeScript
28 lines
628 B
TypeScript
// @strict: true
|
|
// @jsx: react
|
|
// @lib: es6
|
|
// @skipLibCheck: true
|
|
/// <reference path="/.lib/react16.d.ts" />
|
|
import * as React from "react";
|
|
|
|
interface ErrorResult { error: true }
|
|
|
|
interface AsyncLoaderProps<TResult> {
|
|
readonly prop1: () => Promise<TResult>;
|
|
|
|
readonly prop2: (result: Exclude<TResult, ErrorResult>) => any;
|
|
}
|
|
|
|
class AsyncLoader<TResult> extends React.Component<AsyncLoaderProps<TResult>> {
|
|
render() { return null; }
|
|
}
|
|
|
|
async function load(): Promise<{ success: true } | ErrorResult> {
|
|
return { success: true };
|
|
}
|
|
|
|
const loader = <AsyncLoader
|
|
prop1={load}
|
|
prop2={result => result}
|
|
/>;
|