12 lines
313 B
TypeScript
12 lines
313 B
TypeScript
/*
|
|
* Copyright (C) SapphireCode - All Rights Reserved
|
|
* This file is part of Snippeteer which is released under BSD-3-Clause.
|
|
* See file 'LICENSE' for full license details.
|
|
* Created by Timo Hocker <timo@scode.ovh>, April 2020
|
|
*/
|
|
|
|
declare module '*.asset' {
|
|
const content: any;
|
|
export default content;
|
|
}
|