Interface IProps

    Props

    interface IProps {
        swr: {
            mutateUser: ((user: Partial<IFrontMutateUser>) => Promise<void>);
        };
        user: Pick<IFrontUser, "id" | "usermodels">;
    }

    Properties

    Properties

    swr: {
        mutateUser: ((user: Partial<IFrontMutateUser>) => Promise<void>);
    }
    user: Pick<IFrontUser, "id" | "usermodels">

    Generated using TypeDoc and TypeDoc Airthium Plugin