Created
June 24, 2016 09:47
-
-
Save PanJarda/05704d8914065bccbf4bea12b786f594 to your computer and use it in GitHub Desktop.
starUML es2015
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Generated On: 2016-6-24 | |
* Class: component | |
*/ | |
export default classcomponent(){ | |
//Constructor | |
this.opts = null; | |
} | |
/** | |
*/ | |
on(){ | |
//TODO: Implement Me | |
}; | |
/** | |
*/ | |
off(){ | |
//TODO: Implement Me | |
}; | |
module.exports = {component:component}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Generated On: 2016-6-24 | |
* Class: filebrowser | |
*/ | |
import {component} from 'component'; | |
export default classfilebrowser(){ | |
//Constructor | |
this.title = null; | |
this.items = null; | |
} | |
filebrowser.prototype = new component(); | |
/** | |
* @param e | |
* | |
*/ | |
edit(e){ | |
//TODO: Implement Me | |
}; | |
/** | |
* @param e | |
* | |
*/ | |
delete(e){ | |
//TODO: Implement Me | |
}; | |
module.exports = {filebrowser:filebrowser}; |
Author
PanJarda
commented
Jun 24, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment