🛠️ Add `type import to ThemeOptions`

This commit is contained in:
pheralb 2024-09-27 13:29:46 +01:00
parent eacb10f409
commit 8386d525be

View File

@ -1,4 +1,4 @@
import { ThemeOptions } from '../../src/types/svg';
import type { ThemeOptions } from '../../src/types/svg';
const fullUrl = 'https://svgl.app';
@ -13,3 +13,4 @@ export const addFullUrl = (value: string | ThemeOptions): string | ThemeOptions
}
return value;
};