Files
lucide/tools/outline-svg/oslllo-svg-fixer.d.ts
Eric Fennis 3e644fda2d chore(scripts): Refactor scripts to typescript (#3316)
* Adjust typescript types

* adjust types

* fix types in all helper files

* Fix types

* Migrate js files to ts files

* Refactor to TS files

* Rename extentions

* Adjust imports

* Fix builds

* Update lockfile

* Fix last typescript migration

* Fix entry path @lucide/outline-svg

* Fix types

* add checkout step

* format files

* Format files
2025-06-18 15:47:24 +02:00

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>;
};
}