mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
10 lines
169 B
TypeScript
10 lines
169 B
TypeScript
/**
|
|
* A file that contains the custom typings for fleets own modules and libraries
|
|
*/
|
|
|
|
// PNG assests
|
|
declare module "*.png" {
|
|
const value: any;
|
|
export = value;
|
|
}
|