7 lines
122 B
TypeScript
Raw Normal View History

2023-02-22 17:47:24 -08:00
export function install(opts?: {
cacheDir?: string;
prefix?: string;
}): {
uninstall(): void;
} | undefined;
x