Begin XenForo Sync and continue Uploader

This commit is contained in:
2026-01-24 14:43:58 +01:00
parent 86b70562bc
commit f029371a68
21 changed files with 722 additions and 21 deletions

View File

@@ -0,0 +1,18 @@
import {__, I } from "./globals";
declare const _romhackplaza_script_uploader: any;
declare const romhackplaza_modal_submissions: any;
export class Reserve_Post_ID {
/**
*
* @param callback - MUST BE FROM A Upload child.
*/
constructor( callback: () => any ){
if( I.is_edit ) {
callback();
return;
}
}
}