botanjs/src/externs/Astro.Blog.AstroEdit.IPlugin.js
raw ยท 339 bytes
/**
* @interface
*/
Astro.Blog.AstroEdit.IPlugin = function() {};
/** @type {string} */
Astro.Blog.AstroEdit.IPlugin.prototype.id;
/**
* @param {*} data
* @return {void}
*/
Astro.Blog.AstroEdit.IPlugin.prototype.setForView = function(data) {};
/**
* @return {*}
*/
Astro.Blog.AstroEdit.IPlugin.prototype.getData = function() {};