5 lines
139 B
TypeScript
5 lines
139 B
TypeScript
/**
|
|
* Prettify SVG
|
|
*/
|
|
declare function prettifySVG(content: string, tab?: string, depth?: number): string | null;
|
|
export { prettifySVG }; |