1
0
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:
Даниїл Григор'єв 2025-06-19 05:48:23 +03:00
parent 2990f55dfb
commit 7854e10173
No known key found for this signature in database
GPG Key ID: B890DF16341D8C1D
3 changed files with 1 additions and 1 deletions

View File

@ -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>>;
}