Interface IProps

    Props

    interface IProps {
        plugins: Pick<ClientPlugin, "name" | "key">[];
        swr: {
            addOneUser: ((user) => Promise<void>);
        };
    }

    Properties

    Properties

    plugins: Pick<ClientPlugin, "name" | "key">[]
    swr: {
        addOneUser: ((user) => Promise<void>);
    }

    Type declaration

    • addOneUser: ((user) => Promise<void>)

    Generated using TypeDoc and TypeDoc Airthium Plugin