UNPKG

multiform-template

Version:

Template for a multiform module optimised for both io.js and Node.

14 lines (10 loc) 206 B
'use strict'; import Promise from 'bluebird'; export default class Foo { someProperty = 123; static anotherProperty = 456; async doSomething () { await Promise.delay(1000); return 1; } }