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