blockly
Version:
Blockly is a library for building visual programming editors.
24 lines • 574 B
TypeScript
/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* All the values that we expect developers to be able to change
* before injecting Blockly.
*/
interface Config {
dragRadius: number;
flyoutDragRadius: number;
snapRadius: number;
currentConnectionPreference: number;
bumpDelay: number;
connectingSnapRadius: number;
}
/**
* Object holding all the values on Blockly that we expect developers to be
* able to change.
*/
export declare const config: Config;
export {};
//# sourceMappingURL=config.d.ts.map