5 lines
95 B
TypeScript
5 lines
95 B
TypeScript
|
|
/**
|
||
|
|
* Remove whitespace
|
||
|
|
*/
|
||
|
|
declare function trimSVG(str: string): string;
|
||
|
|
export { trimSVG };
|