Created
March 29, 2019 23:41
-
-
Save jamiepine/f514af49b9aaf5147f97e8990655d027 to your computer and use it in GitHub Desktop.
This file contains 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
import Pulse from 'pulse-framework' | |
const pulse = new Pulse.Library({ | |
actions: { | |
example({ base }, testParamOne, textParamTwo) { | |
console.log(testParamOne, textParamTwo) | |
} | |
} | |
}) | |
pulse.base.example('hello', 'world') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment