Rename "touchLayoutManager" and "testTouchLayout"

This commit is contained in:
redphx
2024-05-08 17:11:15 +07:00
parent 26bf14eda6
commit 500f6671c6
3 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
// Get type of an array's element
type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
type PartialRecord<K extends keyof any, T> = Partial<Record<K, T>>
type PartialRecord<K extends keyof any, T> = Partial<Record<K, T>>
interface Window {
AppInterface: any;