UNPKG

blockly

Version:

Blockly is a library for building visual programming editors.

15 lines 414 B
/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Removes the first occurrence of a particular value from an array. * * @param arr Array from which to remove value. * @param value Value to remove. * @returns True if an element was removed. * @internal */ export declare function removeElem<T>(arr: Array<T>, value: T): boolean; //# sourceMappingURL=array.d.ts.map