UNPKG

app-launcher-karma

Version:

A React TypeScript component for an app launcher, similar to Google app launcher, for company products.

11 lines (10 loc) 328 B
import { AppLauncherProduct } from "./AppLauncher"; declare global { interface Window { renderAppLauncher: (elementId: string, products: AppLauncherProduct[], options?: { dropdownStyles?: any; svgColor?: string; position?: "right" | "left" | "center"; }) => void; } }