Guest User

Untitled

a guest
May 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /**
  2. * @type {Service}
  3. */
  4. export default class Service {
  5. /**
  6. * @param {*} options
  7. */
  8. constructor (options) {
  9. this.options = options
  10. }
  11.  
  12. /**
  13. * @param {*} options
  14. */
  15. static build (options) {
  16. return new this(options)
  17. }
  18. }
Add Comment
Please, Sign In to add comment