Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
xLuxy committed Feb 28, 2024
2 parents d0748ff + 30ca4ac commit a7b44a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shared/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2827,28 +2827,28 @@ declare module "alt-shared" {
*
* @remarks Uses {@link "alt-shared".Utils.inspect alt.Utils.inspect} to format values.
*/
export function log(...args: any[]): void;
export function log(arg: any, ...args: any[]): void;

/**
* Logs the specified arguments as an error to the console.
*
* @remarks Uses {@link "alt-shared".Utils.inspect alt.Utils.inspect} to format values.
*/
export function logError(...args: any[]): void;
export function logError(arg: any, ...args: any[]): void;

/**
* Logs the specified arguments as a warning to the console.
*
* @remarks Uses {@link "alt-shared".Utils.inspect alt.Utils.inspect} to format values.
*/
export function logWarning(...args: any[]): void;
export function logWarning(arg: any, ...args: any[]): void;

/**
* Logs the specified arguments to the console if debug is enabled.
*
* @remarks Uses {@link "alt-shared".Utils.inspect alt.Utils.inspect} to format values.
*/
export function logDebug(...args: any[]): void;
export function logDebug(arg: any, ...args: any[]): void;

/**
* Schedules execution of handler on next tick/next frame.
Expand Down

0 comments on commit a7b44a7

Please sign in to comment.