/** * @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