Interface IProps

    Props

    interface IProps {
        organizations: Pick<IFrontOrganizationsItem, "id" | "name" | "owners" | "users" | "groups">[];
        swr: {
            mutateUser?: ((user) => Promise<void>);
        };
        user: Pick<IFrontUser, "id" | "usermodels">;
    }

    Properties

    organizations: Pick<IFrontOrganizationsItem, "id" | "name" | "owners" | "users" | "groups">[]
    swr: {
        mutateUser?: ((user) => Promise<void>);
    }

    Type declaration

    • Optional mutateUser?: ((user) => Promise<void>)
    user: Pick<IFrontUser, "id" | "usermodels">

    Generated using TypeDoc and TypeDoc Airthium Plugin