@omlet/cli
Version:
Omlet (https://omlet.dev) is a component analytics tool that uses a CLI to scan your codebase to detect components and their usage. Get real usage insights from customizable charts to measure adoption across all projects and identify opportunities to impr
10 lines (9 loc) • 307 B
TypeScript
import { Command } from "./tracking";
declare type errorProps = {
command?: Command;
workspaceId?: string;
workspaceSlug?: string;
};
declare function captureException(error: Error): void;
declare function setErrorProps(errorProps: errorProps): void;
export { captureException, setErrorProps };