Last updated
async function showHUD(
title: string,
options?: { clearRootSearch?: boolean; popToRootType?: PopToRootType }
): Promise<void>;import { showHUD } from "@raycast/api";
export default async function Command() {
await showHUD("Hey there 👋");
}import { PopToRootType, showHUD } from "@raycast/api";
export default async function Command() {
await showHUD("Hey there 👋", { clearRootSearch: true, popToRootType: PopToRootType.Immediate });
}