mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 21:56:10 +03: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() {};
|