import PluginBase from './PluginBase';
/**
* Singleton plugin abstract.
*
* This is a special definition class that the Snowboard framework will use to interpret the current plugin as a
* "singleton". This will ensure that only one instance of the plugin class is used across the board.
*
* Singletons are initialised on the "domReady" event by default.
*
* @copyright 2021 Winter.
* @author Ben Thomson <git@alfreido.com>
*/
export default class Singleton extends PluginBase {
}
|