ohmysearch
Version:
Ohmysearch - customizable all in one search tool to boost developer productivity
18 lines (15 loc) • 383 B
TypeScript
import { ReactNode } from "react";
export type OMSExtensionType = "url" | "no-op" | "background-action" | "view";
export type OMSExtension = {
id: string;
title: string;
subTitle?: string;
secondLineTitle?: string;
desc?: string;
type: OMSExtensionType;
url?: string;
iconPath?: string;
emojiChar?: string;
backgroundAction?: () => void;
view?: ReactNode;
};