mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-09 16:21:51 +00:00
Rename incorrectly named .d.ts files
These files do not describe existing JS types and instead define their own. Usage of .d.ts extension prevents these types from being emitted when using emitDeclarationOnly, which affects generation of typings for mod development.
This commit is contained in:
parent
2990f55dfb
commit
7854e10173
@ -33,6 +33,6 @@ export interface ModInfo {
|
||||
mod: Mod;
|
||||
}
|
||||
|
||||
export interface FrozenModMetadata extends Readonly<ModMetadata> {
|
||||
export interface FrozenModMetadata extends Readonly<Omit<ModMetadata, "authors">> {
|
||||
authors: ReadonlyArray<Readonly<ModAuthor>>;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user