mirror of
https://github.com/google/blockly.git
synced 2026-01-26 02:00:10 +01:00
* chore: fixup procedure change event tests * feat: add running procedure change return events * fixup change return * feat: add running the procedure rename event * feat: add running procedure enable events * feat: add running parameter rename events * feat: add running procedure create events * feat: add running procedure delete events * feat: add running parameter create events * feat: add running procedure parameter delete events * chore: add types to all of the new procedure events * chore: format * chore: use type imports * chore: fix test comments * chore: add more inline docs
15 lines
289 B
TypeScript
15 lines
289 B
TypeScript
|
|
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {ProcedureBase} from './events_procedure_base.js';
|
|
|
|
|
|
/**
|
|
* The base event for an event associated with a procedure parameter.
|
|
*/
|
|
export class ProcedureParameterBase extends ProcedureBase {}
|