blockly 8.0.1 → 8.0.3-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/blockly.d.ts CHANGED
@@ -531,13 +531,13 @@ declare module "core/blocks" {
531
531
  * A block definition. For now this very lose, but it can potentially
532
532
  * be refined e.g. by replacing this typedef with a class definition.
533
533
  */
534
- export type BlockDefinition = Object;
534
+ export type BlockDefinition = any;
535
535
  /**
536
536
  * A block definition. For now this very lose, but it can potentially
537
537
  * be refined e.g. by replacing this typedef with a class definition.
538
538
  * @typedef {!Object}
539
539
  */
540
- export let BlockDefinition: any;
540
+ // export let BlockDefinition: any;
541
541
  /**
542
542
  * A mapping of block type names to block prototype objects.
543
543
  * @type {!Object<string,!BlockDefinition>}