ohmysearch
Version:
Ohmysearch - customizable all in one search tool to boost developer productivity
21 lines (19 loc) • 500 B
text/typescript
import { OMSExtension } from "@common/types/OMSExtension";
export const searchSnippetId = "search-snippet";
export const createSnippetId = "create-snippet";
export default [
{
id: searchSnippetId,
title: "Search snippets",
type: "view",
iconPath: "./images/icon-snippet.webp",
subTitle: 'Snippets',
},
{
id: createSnippetId,
title: "Create snippets",
type: "view",
iconPath: "./images/icon-snippet.webp",
subTitle: 'Snippets',
},
] as OMSExtension[];