THIS PROJECT HAS MOVED to an actual repository at https://github.com/nevyn/SPMediaKeyTap.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// unofficial sqlite3 types. | |
// These are typed only for my scope | |
declare module "@sqlite.org/sqlite-wasm" { | |
type InitOptions = { | |
print: (...msg: any[]) => void; | |
printErr: (...msg: any[]) => void; | |
}; | |
declare type PreparedStatement = { |