aboutsummaryrefslogtreecommitdiff
path: root/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'types.ts')
-rw-r--r--types.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/types.ts b/types.ts
new file mode 100644
index 0000000..5b8d74f
--- /dev/null
+++ b/types.ts
@@ -0,0 +1,13 @@
+export interface OptifineVersion {
+ name: string;
+ minecraft: string;
+ forge: string;
+ date: string;
+ download: OptifineDownload;
+}
+
+export interface OptifineDownload {
+ link: string;
+ filename: string;
+ token: string;
+}