mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
* fix: expand the IParameterModel interface * fix: remove support for return types from the concrete procedure model * feat: add an interface for the procedure map, and add getting procedures * fix: add procedure map to workspace * chore: format * fix: add name parameter to procedure model to match parameter model * chore: format * chore: fix comments
21 lines
466 B
TypeScript
21 lines
466 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {IProcedureModel} from './i_procedure_model.js';
|
|
|
|
|
|
export interface IProcedureMap extends Map<string, IProcedureModel> {
|
|
/**
|
|
* Adds the given ProcedureModel to the map of procedure models, so that
|
|
* blocks can find it.
|
|
*/
|
|
add(proc: IProcedureModel): this;
|
|
|
|
|
|
/** Returns all of the procedures stored in this map. */
|
|
getProcedures(): IProcedureModel[];
|
|
}
|