12 строки
376 B
TypeScript
12 строки
376 B
TypeScript
/***********************************************************
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License
|
|
**********************************************************/
|
|
declare module "*.svg" {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
declare module "*.png" {
|
|
const value: any;
|
|
export default value;
|
|
} |