From e2690999dad8eb77fee4e92492e2f6eafaf42130 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Tue, 26 Nov 2019 09:04:45 -0800 Subject: [PATCH] react-blessed: add missing reference (#40668) The file, confusingly, is called react.d.ts, but isn't @types/react. --- types/react-blessed/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/react-blessed/index.d.ts b/types/react-blessed/index.d.ts index 46d0e7e495..d207b756bf 100644 --- a/types/react-blessed/index.d.ts +++ b/types/react-blessed/index.d.ts @@ -4,6 +4,8 @@ // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 +/// + import * as React from 'react'; import { Widgets, screen } from 'blessed'; export type Callback = () => void | null | undefined;