/** * Current system used for executing js */ export declare enum AppType { Deno = 0, Node = 1, Bun = 2, Browser = 3 } /** * Checker Current Mode application */ declare let SystemExecutor: AppType; export default SystemExecutor;