Skip to content

Commit

Permalink
fix: and interfaces are consistently cased with other option interfac…
Browse files Browse the repository at this point in the history
…es (#612)
  • Loading branch information
nicklemmon authored and dmtrKovalenko committed Feb 16, 2024
1 parent 4786db2 commit 73c7733
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/commands/mouseDown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import { mouseButtonNumbers } from "../mouseButtonNumbers";
import { getModifiers } from "../getModifiers";

export interface realMouseDownOptions {
export interface RealMouseDownOptions {
/** Pointer type for realMouseDown, if "pen" touch simulated */
pointer?: "mouse" | "pen";
/**
Expand Down Expand Up @@ -59,7 +59,7 @@ export interface realMouseDownOptions {
/** @ignore this, update documentation for this function at index.d.ts */
export async function realMouseDown(
subject: JQuery,
options: realMouseDownOptions = {},
options: RealMouseDownOptions = {},
) {
const position =
options.x && options.y ? { x: options.x, y: options.y } : options.position;
Expand Down
4 changes: 2 additions & 2 deletions src/commands/mouseUp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import { mouseButtonNumbers } from "../mouseButtonNumbers";
import { getModifiers } from "../getModifiers";

export interface realMouseUpOptions {
export interface RealMouseUpOptions {
/** Pointer type for realMouseUp, if "pen" touch simulated */
pointer?: "mouse" | "pen";
/**
Expand Down Expand Up @@ -49,7 +49,7 @@ export interface realMouseUpOptions {
/** @ignore this, update documentation for this function at index.d.ts */
export async function realMouseUp(
subject: JQuery,
options: realMouseUpOptions = {},
options: RealMouseUpOptions = {},
) {
const position =
options.x && options.y ? { x: options.x, y: options.y } : options.position;
Expand Down

0 comments on commit 73c7733

Please sign in to comment.