mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 11:22:41 +01:00
20 lines
338 B
JavaScript
20 lines
338 B
JavaScript
|
/** @constructor */
|
||
|
pack = function() {
|
||
|
this.init = function(){}
|
||
|
function config(){}
|
||
|
}
|
||
|
|
||
|
pack.build = function(task) {};
|
||
|
|
||
|
/** @memberOf pack */
|
||
|
pack.install = function() {}
|
||
|
|
||
|
/** @memberOf pack */
|
||
|
pack.install.overwrite = function() {}
|
||
|
|
||
|
/** @memberOf pack */
|
||
|
clean = function() {}
|
||
|
|
||
|
/** @memberOf pack-config */
|
||
|
install = function() {};
|