mirror of
https://github.com/konvajs/konva.git
synced 2026-03-03 16:58:33 +08:00
11 lines
163 B
JavaScript
11 lines
163 B
JavaScript
/**
|
|
* This is a module called foo.
|
|
* @module foo
|
|
*/
|
|
|
|
/**
|
|
* The module exports a single function.
|
|
* @param {string} bar
|
|
*/
|
|
module.exports = function(bar) {};
|