diff --git a/lib/internal/types.ts b/lib/internal/types.ts index e86771a..af3a0cd 100644 --- a/lib/internal/types.ts +++ b/lib/internal/types.ts @@ -87,11 +87,13 @@ export type Context = {}; export type ContractContext = Context & NeokingdomContracts; -export type Step = (c: T) => Promise; +export type Step = ( + c: T +) => Promise; export type StepWithExpandable = | ExpandableStep - | ((c: T) => Promise); + | ((c: T) => Promise); export type ExpandableStep = { expandableFunction: (c: T) => ProcessedSequence;