1
0
Fork 0

[vercel skip] a little more documentation fixing

This commit is contained in:
Enoch Riese 2023-03-12 11:41:56 -05:00
parent 484d16f463
commit 9df063ec97
2 changed files with 7 additions and 5 deletions

View file

@ -19,8 +19,10 @@ The single argument should be an Array of methods to add to the
store. Each entry in the array should be an array itself holding a path in
dot notation and a method, as such:
The expected first parameter for the method is the `Store` instance.
```js
function myCustomMethod() {
function myCustomMethod(store, ...otherArguments) {
// Do something clever
}