TS

PHOTO EMBED

Thu Aug 29 2024 12:24:32 GMT+0000 (Coordinated Universal Time)

Saved by @cseagul #typescript

useCopilotAction({
   name: "sortHouseListings",
   description: "Sort the displayed house listings",
   parameters: [
     {
       name: "columnId",
       type: "string",
       description: "The ID of the column to sort on",
      },
    ],
    handler: async ({columnId, sortDirection}) => {
      sortColumn(columnId, sortDirection);
    },
  });
content_copyCOPY