blockly
Version:
Blockly is a library for building visual programming editors.
22 lines • 738 B
TypeScript
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type { Input } from '../../inputs/input.js';
import type { ConstantProvider } from '../common/constants.js';
import { InputConnection } from './input_connection.js';
/**
* An object containing information about the space an inline input takes up
* during rendering.
*/
export declare class InlineInput extends InputConnection {
connectionHeight: number;
connectionWidth: number;
/**
* @param constants The rendering constants provider.
* @param input The inline input to measure and store information for.
*/
constructor(constants: ConstantProvider, input: Input);
}
//# sourceMappingURL=inline_input.d.ts.map