mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-03-11 10:39:17 +03:00
Remove useless exports
This commit is contained in:
parent
0759e2c0ad
commit
3049aaeff2
1 changed files with 8 additions and 8 deletions
16
src/ts/GIJSON.d.ts
vendored
16
src/ts/GIJSON.d.ts
vendored
|
@ -1,6 +1,6 @@
|
|||
declare module GIJSON {
|
||||
|
||||
export interface VoicePack {
|
||||
interface VoicePack {
|
||||
language: string;
|
||||
name: string;
|
||||
path: string;
|
||||
|
@ -8,7 +8,7 @@ declare module GIJSON {
|
|||
md5: string;
|
||||
}
|
||||
|
||||
export interface Latest {
|
||||
interface Latest {
|
||||
name: string;
|
||||
version: string;
|
||||
path: string;
|
||||
|
@ -20,7 +20,7 @@ declare module GIJSON {
|
|||
segments: any[];
|
||||
}
|
||||
|
||||
export interface Diff {
|
||||
interface Diff {
|
||||
name: string;
|
||||
version: string;
|
||||
path: string;
|
||||
|
@ -30,12 +30,12 @@ declare module GIJSON {
|
|||
voice_packs: VoicePack[];
|
||||
}
|
||||
|
||||
export interface Game {
|
||||
interface Game {
|
||||
latest: Latest;
|
||||
diffs: Diff[];
|
||||
}
|
||||
|
||||
export interface Plugins {
|
||||
interface Plugins {
|
||||
name: string;
|
||||
version: string;
|
||||
path: string;
|
||||
|
@ -44,17 +44,17 @@ declare module GIJSON {
|
|||
entry: string;
|
||||
}
|
||||
|
||||
export interface Plugin {
|
||||
interface Plugin {
|
||||
plugins: Plugins[];
|
||||
version: string;
|
||||
}
|
||||
|
||||
export interface DeprecatedPackage {
|
||||
interface DeprecatedPackage {
|
||||
name: string;
|
||||
md5: string;
|
||||
}
|
||||
|
||||
export interface Data {
|
||||
interface Data {
|
||||
game: Game;
|
||||
plugin: Plugin;
|
||||
web_url: string;
|
||||
|
|
Loading…
Add table
Reference in a new issue