feat(scrcpy): add aliases for all patch versions

This commit is contained in:
Simon Chan 2024-12-06 11:20:28 +08:00
parent a67e20854c
commit 0f5af05adb
No known key found for this signature in database
GPG key ID: A8B69F750B9BCEDD
7 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,4 @@
export {
ScrcpyOptions1_15 as ScrcpyOptions1_15_1,
ScrcpyOptions1_15Impl as ScrcpyOptions1_15_1Impl,
} from "./1_15/index.js";

View file

@ -0,0 +1,4 @@
export {
ScrcpyOptions2_1 as ScrcpyOptions2_1_1,
ScrcpyOptions2_1Impl as ScrcpyOptions2_1_1Impl,
} from "./2_1/index.js";

View file

@ -0,0 +1,4 @@
export {
ScrcpyOptions2_3 as ScrcpyOptions2_3_1,
ScrcpyOptions2_3Impl as ScrcpyOptions2_3_1Impl,
} from "./2_3/index.js";

View file

@ -0,0 +1,4 @@
export {
ScrcpyOptions2_6 as ScrcpyOptions2_6_1,
ScrcpyOptions2_6Impl as ScrcpyOptions2_6_1Impl,
} from "./2_6/index.js";

View file

@ -0,0 +1,4 @@
export {
ScrcpyOptions3_0 as ScrcpyOptions3_0_1,
ScrcpyOptions3_0Impl as ScrcpyOptions3_0_1Impl,
} from "./3_0/index.js";

View file

@ -0,0 +1,4 @@
export {
ScrcpyOptions3_0 as ScrcpyOptions3_0_2,
ScrcpyOptions3_0Impl as ScrcpyOptions3_0_2Impl,
} from "./3_0/index.js";

View file

@ -1,4 +1,5 @@
export * from "./1_15/index.js"; export * from "./1_15/index.js";
export * from "./1_15_1.js";
export * from "./1_16.js"; export * from "./1_16.js";
export * from "./1_17/index.js"; export * from "./1_17/index.js";
export * from "./1_18/index.js"; export * from "./1_18/index.js";
@ -11,13 +12,18 @@ export * from "./1_24/index.js";
export * from "./1_25/index.js"; export * from "./1_25/index.js";
export * from "./2_0/index.js"; export * from "./2_0/index.js";
export * from "./2_1/index.js"; export * from "./2_1/index.js";
export * from "./2_1_1.js";
export * from "./2_2/index.js"; export * from "./2_2/index.js";
export * from "./2_3/index.js"; export * from "./2_3/index.js";
export * from "./2_3_1.js";
export * from "./2_4/index.js"; export * from "./2_4/index.js";
export * from "./2_5.js"; export * from "./2_5.js";
export * from "./2_6/index.js"; export * from "./2_6/index.js";
export * from "./2_6_1.js";
export * from "./2_7/index.js"; export * from "./2_7/index.js";
export * from "./3_0/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 "./android/index.js";
export * from "./base/index.js"; export * from "./base/index.js";
export * from "./codec/index.js"; export * from "./codec/index.js";