fix: Fix typing error of generators (#4753)

This commit is contained in:
叶伟伟
2021-04-13 07:00:16 +08:00
committed by GitHub
parent e295102eda
commit 978b1b83c4
5 changed files with 10 additions and 5 deletions

3
typings/python.d.ts vendored
View File

@@ -12,4 +12,5 @@
/// <reference path="core.d.ts" />
import * as Blockly from './core';
export = Blockly.Generator;
declare const python: Blockly.Generator;
export = python;