Skip to content

Commit

Permalink
feat(scrcpy): add aliases for all patch versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yume-chan committed Dec 6, 2024
1 parent a67e208 commit 0f5af05
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libraries/scrcpy/src/1_15_1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export {
ScrcpyOptions1_15 as ScrcpyOptions1_15_1,
ScrcpyOptions1_15Impl as ScrcpyOptions1_15_1Impl,
} from "./1_15/index.js";
4 changes: 4 additions & 0 deletions libraries/scrcpy/src/2_1_1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export {
ScrcpyOptions2_1 as ScrcpyOptions2_1_1,
ScrcpyOptions2_1Impl as ScrcpyOptions2_1_1Impl,
} from "./2_1/index.js";
4 changes: 4 additions & 0 deletions libraries/scrcpy/src/2_3_1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export {
ScrcpyOptions2_3 as ScrcpyOptions2_3_1,
ScrcpyOptions2_3Impl as ScrcpyOptions2_3_1Impl,
} from "./2_3/index.js";
4 changes: 4 additions & 0 deletions libraries/scrcpy/src/2_6_1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export {
ScrcpyOptions2_6 as ScrcpyOptions2_6_1,
ScrcpyOptions2_6Impl as ScrcpyOptions2_6_1Impl,
} from "./2_6/index.js";
4 changes: 4 additions & 0 deletions libraries/scrcpy/src/3_0_1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export {
ScrcpyOptions3_0 as ScrcpyOptions3_0_1,
ScrcpyOptions3_0Impl as ScrcpyOptions3_0_1Impl,
} from "./3_0/index.js";
4 changes: 4 additions & 0 deletions libraries/scrcpy/src/3_0_2.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export {
ScrcpyOptions3_0 as ScrcpyOptions3_0_2,
ScrcpyOptions3_0Impl as ScrcpyOptions3_0_2Impl,
} from "./3_0/index.js";
6 changes: 6 additions & 0 deletions libraries/scrcpy/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from "./1_15/index.js";
export * from "./1_15_1.js";
export * from "./1_16.js";
export * from "./1_17/index.js";
export * from "./1_18/index.js";
Expand All @@ -11,13 +12,18 @@ export * from "./1_24/index.js";
export * from "./1_25/index.js";
export * from "./2_0/index.js";
export * from "./2_1/index.js";
export * from "./2_1_1.js";
export * from "./2_2/index.js";
export * from "./2_3/index.js";
export * from "./2_3_1.js";
export * from "./2_4/index.js";
export * from "./2_5.js";
export * from "./2_6/index.js";
export * from "./2_6_1.js";
export * from "./2_7/index.js";
export * from "./3_0/index.js";
export * from "./3_0_1.js";
export * from "./3_0_2.js";
export * from "./android/index.js";
export * from "./base/index.js";
export * from "./codec/index.js";
Expand Down

0 comments on commit 0f5af05

Please sign in to comment.