blockly
Version:
Blockly is a library for building visual programming editors.
19 lines • 559 B
TypeScript
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type { ConstantProvider } from '../common/constants.js';
import { Measurable } from './base.js';
/**
* An object containing information about the space the jagged edge of a
* collapsed block takes up during rendering.
*/
export declare class JaggedEdge extends Measurable {
private jaggedEdge;
/**
* @param constants The rendering constants provider.
*/
constructor(constants: ConstantProvider);
}
//# sourceMappingURL=jagged_edge.d.ts.map