mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
37 lines
782 B
JavaScript
37 lines
782 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview The interface for an object that a style can be added to.
|
|
* @author aschmiedt@google.com (Abby Schmiedt)
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
goog.module('Blockly.IStyleable');
|
|
goog.module.declareLegacyNamespace();
|
|
|
|
|
|
/**
|
|
* Interface for an object that a style can be added to.
|
|
* @interface
|
|
*/
|
|
const IStyleable = function() {};
|
|
|
|
/**
|
|
* Adds a style on the toolbox. Usually used to change the cursor.
|
|
* @param {string} style The name of the class to add.
|
|
*/
|
|
IStyleable.prototype.addStyle;
|
|
|
|
/**
|
|
* Removes a style from the toolbox. Usually used to change the cursor.
|
|
* @param {string} style The name of the class to remove.
|
|
*/
|
|
IStyleable.prototype.removeStyle;
|
|
|
|
exports = IStyleable;
|