Skip to content

Instantly share code, notes, and snippets.

@PanJarda
Created June 24, 2016 09:47
Show Gist options
  • Save PanJarda/05704d8914065bccbf4bea12b786f594 to your computer and use it in GitHub Desktop.
Save PanJarda/05704d8914065bccbf4bea12b786f594 to your computer and use it in GitHub Desktop.
starUML es2015
/**
* 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};
/**
* 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};
/**
* Generated On: 2016-6-24
* Class: navbar
*/
import {component} from 'component';
export default classnavbar(){
//Constructor
this.title = null;
}
navbar.prototype = new component();
/**
*/
changeTitle(){
//TODO: Implement Me
};
module.exports = {navbar:navbar};
@PanJarda
Copy link
Author

staruml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment