UNPKG

slush-regenerator

Version:

A slush generator for many website things (Optimized for Laravel 5.2)

22 lines (20 loc) 596 B
import {Package} from 'core/package'; import {nls} from './nls/strings'; /** * <%= packageNameCaps %> package * @class */ export default class <%= packageNameCaps %> extends Package { /** * Autoloading hook * @constructs <%= packageNameCaps %> * @param {object} element - HTML element the package is tied to in the DOM. * @param {object} options - JSON string of options passed from the data-options attribute. */ constructor(element, options = {}) { let resources = {nls} super(element, options, resources); } }