blockly
Version:
Blockly is a library for building visual programming editors.
26 lines • 736 B
TypeScript
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type { ConstantProvider } from '../common/constants.js';
import { Row } from './row.js';
/**
* An object containing information about a row that holds one or more inputs.
*/
export declare class InputRow extends Row {
/**
* The total width of all blocks connected to this row.
*/
connectedBlockWidths: number;
/**
* @param constants The rendering constants provider.
*/
constructor(constants: ConstantProvider);
/**
* Inspect all subcomponents and populate all size properties on the row.
*/
measure(): void;
endsWithElemSpacer(): boolean;
}
//# sourceMappingURL=input_row.d.ts.map