1 | /**
|
2 | Check if a string is [SVG](https://en.wikipedia.org/wiki/Scalable_Vector_Graphics).
|
3 |
|
4 | @example
|
5 | ```
|
6 | import isSvg from 'is-svg';
|
7 |
|
8 | isSvg('<svg xmlns="http://www.w3.org/2000/svg"><path fill="#00CD9F"/></svg>');
|
9 | //=> true
|
10 | ```
|
11 | */
|
12 | export default function isSvg(string: string): boolean;
|