Interface ArgsWrapper

This is a utility interface that represents the resulting args structure after the thunk is normalized.

interface ArgsWrapper {
    named?: Record<string, any>;
    positional?: unknown[];
}

Properties

Properties

named?: Record<string, any>
positional?: unknown[]

Generated using TypeDoc