Interface IProps

    Props

    interface IProps {
        swr: {
            mutateOneWorkspace: ((workspace) => Promise<void>);
        };
        workspace: Pick<IFrontWorkspacesItem, "id" | "name">;
    }

    Properties

    Properties

    swr: {
        mutateOneWorkspace: ((workspace) => Promise<void>);
    }

    Type declaration

    • mutateOneWorkspace: ((workspace) => Promise<void>)
    workspace: Pick<IFrontWorkspacesItem, "id" | "name">

    Generated using TypeDoc and TypeDoc Airthium Plugin