Interface IProps

    Props

    interface IProps {
        organizations: Pick<IFrontOrganizationsItem, "id" | "name" | "owners" | "users" | "groups">[];
        page: string;
        swr: {
            delOneWorkspace: ((workspace) => Promise<void>);
            mutateOneWorkspace: ((workspace) => Promise<void>);
        };
        user: Pick<IFrontUser, "id">;
        workspace: Pick<IFrontWorkspacesItem, "id" | "name" | "projects" | "owners" | "users" | "groups">;
    }

    Properties

    organizations: Pick<IFrontOrganizationsItem, "id" | "name" | "owners" | "users" | "groups">[]
    page: string
    swr: {
        delOneWorkspace: ((workspace) => Promise<void>);
        mutateOneWorkspace: ((workspace) => Promise<void>);
    }

    Type declaration

    • delOneWorkspace: ((workspace) => Promise<void>)
    • mutateOneWorkspace: ((workspace) => Promise<void>)
    user: Pick<IFrontUser, "id">
    workspace: Pick<IFrontWorkspacesItem, "id" | "name" | "projects" | "owners" | "users" | "groups">

    Generated using TypeDoc and TypeDoc Airthium Plugin