forked from Botanical/BotanJS
9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
/** @constructor Plugin Interface */
|
|
Astro.Blog.AstroEdit.IPlugin = function(){};
|
|
/** @type {String} */
|
|
Astro.Blog.AstroEdit.IPlugin.id;
|
|
/** @type {Function} */
|
|
Astro.Blog.AstroEdit.IPlugin.setFromData;
|
|
/** @type {Function} */
|
|
Astro.Blog.AstroEdit.IPlugin.getData;
|