@g20/server
Version:
Server Side Rendering
27 lines (23 loc) • 809 B
JavaScript
/**
* @g20/server 1.0.0-alpha.46
* (c) David Geo Holmes david.geo.holmes@gmail.com
* Released under the MIT License.
*/
System.register([], (function (exports) {
'use strict';
return {
execute: (function () {
exports("initBoard", initBoard);
/**
* A convenience function for initializing a new GraphicsBoard using SVG.
* @param elementOrId HTML identifier (id) of element in which the board is rendered.
* @param options An object that sets some of the board properties.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
function initBoard(elementOrId, options = {}) {
throw new Error();
}
})
};
}));
//# sourceMappingURL=index.js.map