Interface IProps

    Props

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

    Properties

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

    Generated using TypeDoc and TypeDoc Airthium Plugin