@zthun/romulator-api 1.10.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/files/files-games-repository.d.mts +27 -0
- package/dist/files/files-repository.d.mts +53 -16
- package/dist/files/files-systems-repository.d.mts +27 -0
- package/dist/games/games-service.d.mts +8 -8
- package/dist/main.cjs +571 -468
- package/dist/main.cjs.map +1 -1
- package/dist/main.js +578 -475
- package/dist/main.js.map +1 -1
- package/dist/systems/systems-service.d.mts +2 -4
- package/package.json +11 -11
- package/dist/files/files-system-json-repository.d.mts +0 -28
- package/dist/systems/system-known.d.mts +0 -80
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
import { IZRomulatorSystem } from '@zthun/romulator-client';
|
|
2
|
-
/**
|
|
3
|
-
* A helper factory class for creating supported systems.
|
|
4
|
-
*/
|
|
5
|
-
export declare abstract class ZRomulatorSystemKnown {
|
|
6
|
-
/**
|
|
7
|
-
* Returns all known systems.
|
|
8
|
-
*
|
|
9
|
-
* @returns
|
|
10
|
-
* All supported systems.
|
|
11
|
-
*/
|
|
12
|
-
static all(): IZRomulatorSystem[];
|
|
13
|
-
/**
|
|
14
|
-
* Creates a system that represents the Nintendo
|
|
15
|
-
* Entertainment System (NES).
|
|
16
|
-
*
|
|
17
|
-
* @returns
|
|
18
|
-
* A {@link ZRomulatorSystemBuilder} instance that has
|
|
19
|
-
* built the nes.
|
|
20
|
-
*/
|
|
21
|
-
static nes(): IZRomulatorSystem;
|
|
22
|
-
/**
|
|
23
|
-
* Creates a system that represents the Super
|
|
24
|
-
* Nintendo Entertainment System (SNES).
|
|
25
|
-
*
|
|
26
|
-
* @returns
|
|
27
|
-
* This instance.
|
|
28
|
-
*/
|
|
29
|
-
static snes(): IZRomulatorSystem;
|
|
30
|
-
/**
|
|
31
|
-
* Creates a system that represents the Nintendo
|
|
32
|
-
* 64 (N64).
|
|
33
|
-
*
|
|
34
|
-
* @returns
|
|
35
|
-
* This instance.
|
|
36
|
-
*/
|
|
37
|
-
static n64(): IZRomulatorSystem;
|
|
38
|
-
/**
|
|
39
|
-
* Creates a system that represents the Nintendo
|
|
40
|
-
* GameCube (GC).
|
|
41
|
-
*
|
|
42
|
-
* @returns
|
|
43
|
-
* This instance.
|
|
44
|
-
*/
|
|
45
|
-
static gc(): IZRomulatorSystem;
|
|
46
|
-
/**
|
|
47
|
-
* Creates a system that represents the Nintendo
|
|
48
|
-
* Wii (Wii).
|
|
49
|
-
*
|
|
50
|
-
* @returns
|
|
51
|
-
* This instance.
|
|
52
|
-
*/
|
|
53
|
-
static wii(): IZRomulatorSystem;
|
|
54
|
-
/**
|
|
55
|
-
* Creates a system that represents the Nintendo
|
|
56
|
-
* Wii U (WiiU).
|
|
57
|
-
*
|
|
58
|
-
* @returns
|
|
59
|
-
* This instance.
|
|
60
|
-
*/
|
|
61
|
-
static wiiu(): IZRomulatorSystem;
|
|
62
|
-
/**
|
|
63
|
-
* Creates a system that represents the Nintendo
|
|
64
|
-
* Switch (Switch).
|
|
65
|
-
*
|
|
66
|
-
* @returns
|
|
67
|
-
* This instance.
|
|
68
|
-
*/
|
|
69
|
-
static switch(): IZRomulatorSystem;
|
|
70
|
-
/**
|
|
71
|
-
* Creates a system from an id slug.
|
|
72
|
-
*
|
|
73
|
-
* @param id -
|
|
74
|
-
* The id slug of the system to create.
|
|
75
|
-
*
|
|
76
|
-
* @return
|
|
77
|
-
* The system, or null if the id is not known.
|
|
78
|
-
*/
|
|
79
|
-
static from(id: string): IZRomulatorSystem | null;
|
|
80
|
-
}
|