blockly
Version:
Blockly is a library for building visual programming editors.
15 lines • 321 B
TypeScript
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Enum for the type of a connection or input.
*/
export declare enum ConnectionType {
INPUT_VALUE = 1,
OUTPUT_VALUE = 2,
NEXT_STATEMENT = 3,
PREVIOUS_STATEMENT = 4
}
//# sourceMappingURL=connection_type.d.ts.map