forked from Botanical/BotanJS
9 lines
268 B
JavaScript
9 lines
268 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.getSetData;
|