Skip to content

Commit

Permalink
fix: Ran prettier
Browse files Browse the repository at this point in the history
Signed-off-by: Scraps <123112608+ScrapsPrograms@users.noreply.github.com>
  • Loading branch information
ScrapsPrograms committed Sep 12, 2024
1 parent bb59081 commit b66b054
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions typings/mysql/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,12 @@ export function createPool(config: PoolOptions): BasePool;

export function createPoolCluster(config?: PoolClusterOptions): PoolCluster;

type TimeZone = 'local' | 'Z' | string & NonNullable<unknown>;
export function escape(value: any, stringifyObjects?: boolean, timeZone?: TimeZone): string;
type TimeZone = 'local' | 'Z' | (string & NonNullable<unknown>);
export function escape(
value: any,
stringifyObjects?: boolean,
timeZone?: TimeZone,
): string;

export function escapeId(value: any, forbidQualified?: boolean): string;

Expand Down

0 comments on commit b66b054

Please sign in to comment.