mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 15:37:41 +01:00
15 lines
295 B
TypeScript
15 lines
295 B
TypeScript
|
|
declare module 'oslllo-svg-fixer' {
|
||
|
|
export interface SVGFixerOptions {
|
||
|
|
showProgressBar?: boolean;
|
||
|
|
traceResolution?: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function SVGFixer(
|
||
|
|
inputDir: string,
|
||
|
|
outputDir: string,
|
||
|
|
options?: SVGFixerOptions,
|
||
|
|
): {
|
||
|
|
fix: () => Promise<void>;
|
||
|
|
};
|
||
|
|
}
|