Stay organized with collections
Save and categorize content based on your preferences.
blockly > BlocklyOptions > plugins
BlocklyOptions.plugins property
Signature:
plugins?: {
[key: string]: (new (...p1: any[]) => any) | string;
};
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["`plugins` is an optional property within `BlocklyOptions` that allows developers to extend Blockly's functionality with custom plugins."],["It is represented by an object where keys are plugin names and values are either constructor functions for plugins or strings representing paths to plugin modules."],["Through this property, users can integrate tools, features, or custom logic into their Blockly workspace, enhancing its flexibility and adaptability to various use cases."]]],[]]