diff --git a/package.json b/package.json index d168281..9ac0be5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flux-standard-action", - "version": "1.2.0", + "version": "2.0.0", "description": "A human-friendly standard for Flux action objects", "main": "lib/index.js", "typings": "lib/index.d.ts", diff --git a/src/index.d.ts b/src/index.d.ts index 6c8b3dc..6f50b3f 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -23,7 +23,7 @@ export interface FluxStandardAction { * The optional `meta` property MAY be any type of value. * It is intended for any extra information that is not part of the payload. */ - meta: Meta; + meta?: Meta; } export interface ErrorFluxStandardAction extends FluxStandardAction {