canvacard
Version:
Powerful image manipulation package for beginners.
13 lines (12 loc) • 369 B
JavaScript
/**
* @typedef {object} Plugins
* @property {Function} circle Complement of circle
* @property {Function} convolute Convolute complement
* @property {Function} abbrev Complement of abbreviations
*/
const data = {
circle: require("../plugins/circle"),
convolute: require("../plugins/convolute"),
abbrev: require("../plugins/abbrev")
};
module.exports = data;