Fix a naming nit

Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Šimon Brandner 2021-07-22 10:30:12 +02:00 committed by GitHub
parent 34f3e62f72
commit adc177b28f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
src/@types/svg.d.ts vendored
View File

@ -15,6 +15,6 @@ limitations under the License.
*/
declare module "*.svg" {
const content: string;
export default content;
const path: string;
export default path;
}