cozy-search
Version:
UI components about search bar and IA assistant
13 lines (12 loc) • 401 B
TypeScript
export function getIconForSearchResult(searchResult: any): {
type: string;
app: any;
component?: undefined;
} | {
type: string;
component: import("react").ReactNode;
app?: undefined;
};
export function getDriveMimeTypeIcon(file: import("cozy-client/types/types").IOCozyFile, { isEncrypted }?: {
isEncrypted?: boolean | undefined;
} | undefined): import("react").ReactNode;