mono/packages/search/types.d.ts
2025-03-11 11:28:14 +01:00

18 lines
324 B
TypeScript

export interface Hash<T> {
[id: string]: T;
}
export type IOptionsMap = {
debug: boolean;
dst: string;
engine: string;
env_key: string;
google_domain: string;
hl: string;
language: string;
ll: string;
location: string;
query: string;
searchCoord: string;
type: string;
};