Files
page-assist/src/utils/search-provider.ts

14 lines
236 B
TypeScript
Raw Normal View History

2024-03-31 15:57:56 +05:30
export const SUPPORTED_SERACH_PROVIDERS = [
{
label: "Google",
value: "google"
},
{
label: "DuckDuckGo",
value: "duckduckgo"
2024-04-28 00:36:33 +05:30
},
{
label: "Sogou",
value: "sogou"
2024-03-31 15:57:56 +05:30
}
]