Added support for Streamdeck Pedal and updated UI to better fit the Packed UI style

This commit is contained in:
2026-02-27 22:47:08 +01:00
committed by erik
parent 5a70f775f1
commit 93faae5cc8
1463 changed files with 306917 additions and 0 deletions

30
node_modules/pkg-prebuilds/bindings.d.ts generated vendored Normal file
View File

@@ -0,0 +1,30 @@
/**
* Load the native binding for a module
* @param basePath - the base path of the module. Searching is done using this as the root
* @param options - Describe how the prebuilt binary is named. This is the same as what is given to pkg-prebuilds-verify. By describing all these properties explicitly, we can make the loading be much simpler and more deterministic, and avoid needing the list the contents of folders and detemrining which is the best match.
*/
declare function loadBinding<T = any>(basePath: string, options: loadBinding.Options): T
declare namespace loadBinding {
/**
* Various properties defining how the files will be named
*/
interface Options {
/**
* Unique name of the binding.
* This must match the output file as specified in CMake
* Typically this will be the same as the name in your package.json, but you are free to make it different
*/
name: string
/**
* The node-api versions that are built.
*/
napi_versions?: number[]
/**
* Whether the bindings are labelled with the arm version (eg armv7, arm64v8)
*/
armv?: boolean
}
}
export = loadBinding