New IDs, finish Submit Translation page and begin BIG TS.

This commit is contained in:
2026-01-13 19:15:47 +01:00
parent baaef17a1b
commit 86b70562bc
16 changed files with 323 additions and 65 deletions

19
ts/submissions/globals.ts Normal file
View File

@@ -0,0 +1,19 @@
export declare const _romhackplaza_script_uploader: any;
export declare const romhackplaza_modal_submissions: any;
declare const wp: any;
export const { __, _x, _n, _nx } = wp.i18n;
export const FORBIDDEN_CARS: Array<string> = [
"&", "+"
];
export let during_upload = false;
export const I: any = {
upload: undefined,
drop_container: undefined,
}
export interface Can_Upload_Detail {
file: File;
}