react-blessed: add missing reference (#40668)

The file, confusingly, is called react.d.ts, but isn't @types/react.
This commit is contained in:
Nathan Shively-Sanders 2019-11-26 09:04:45 -08:00 committed by GitHub
parent 275ab65da8
commit e2690999da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,8 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
/// <reference path="./react.d.ts" />
import * as React from 'react';
import { Widgets, screen } from 'blessed';
export type Callback = () => void | null | undefined;