This repository was archived by the owner on Dec 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed
Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 5252 "@typescript-eslint/eslint-plugin" : " ^5.10.2" ,
5353 "@typescript-eslint/parser" : " ^5.10.2" ,
5454 "babel-loader" : " ^8.2.3" ,
55- "babel-plugin-module-resolver" : " ^4.1 .0" ,
55+ "babel-plugin-module-resolver" : " ^5.0 .0" ,
5656 "eslint" : " ^8.8.0" ,
5757 "jest" : " ^27.4.7" ,
5858 "jest-filename-transform" : " ^0.1.0" ,
Original file line number Diff line number Diff line change 22import path from "path" ;
33import fs from "fs" ;
44import imageSize from "image-size" ;
5- import glob from "glob" ;
5+ import * as glob from "glob" ;
66import { build } from "esbuild" ;
77import zipdir from "zip-dir" ;
88import { Action , Plugin , State } from ".." ;
Original file line number Diff line number Diff line change 11import fs from "fs" ;
22import path from "path" ;
3- import glob from "glob" ;
3+ import * as glob from "glob" ;
44
55const sourceDir = path . join ( process . cwd ( ) , "src" ) ;
66
Original file line number Diff line number Diff line change @@ -39,9 +39,17 @@ export type KeyDownEvent<T = unknown> = ActionEvent<T>;
3939export type KeyUpEvent < T = unknown > = ActionEvent < T > ;
4040export type WillAppearEvent < T = unknown > = ActionEvent < T > ;
4141export type WillDisappearEvent < T = unknown > = ActionEvent < T > ;
42- export type TouchTapEvent < T = unknown > = DialActionEvent < T > & { tapPos : number [ ] , hold : boolean } ;
43- export type DialPressEvent < T = unknown > = DialActionEvent < T > & { pressed : boolean } ;
44- export type DialRotateEvent < T = unknown > = DialActionEvent < T > & { pressed : boolean , ticks : number } ;
42+ export type TouchTapEvent < T = unknown > = DialActionEvent < T > & {
43+ tapPos : number [ ] ;
44+ hold : boolean ;
45+ } ;
46+ export type DialPressEvent < T = unknown > = DialActionEvent < T > & {
47+ pressed : boolean ;
48+ } ;
49+ export type DialRotateEvent < T = unknown > = DialActionEvent < T > & {
50+ pressed : boolean ;
51+ ticks : number ;
52+ } ;
4553
4654export interface TitleParametersDidChangeEvent < T = unknown >
4755 extends StreamDeckEvent {
You can’t perform that action at this time.
0 commit comments