Skip to content

Commit 327d03c

Browse files
ArelavJaKXz
authored andcommitted
fix: make meta optional as documented (#106)
1 parent 837d65a commit 327d03c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface FluxStandardAction<Payload, Meta = undefined> {
2323
* The optional `meta` property MAY be any type of value.
2424
* It is intended for any extra information that is not part of the payload.
2525
*/
26-
meta: Meta;
26+
meta?: Meta;
2727
}
2828

2929
export interface ErrorFluxStandardAction<CustomError extends Error, Meta = undefined> extends FluxStandardAction<CustomError, Meta> {

0 commit comments

Comments
 (0)