0.0.3: Exotic Type Gymnastics #3

Merged
Astrian merged 40 commits from dev into main 2025-05-22 01:17:51 +00:00
2 changed files with 7 additions and 3 deletions
Showing only changes of commit 3cdf0a28ef - Show all commits

View File

@ -12,8 +12,10 @@ interface ComponentOptions {
newValue: string,
) => void
states?: Record<string, unknown>
statesListeners?: { [key: string]: (value: unknown) => void }
funcs?: { [key: string]: (...args: unknown[]) => void }
// biome-ignore lint/suspicious/noExplicitAny: no assuming the types of arguments
statesListeners?: { [key: string]: (value: any) => void }
// biome-ignore lint/suspicious/noExplicitAny: no assuming the types of arguments
funcs?: { [key: string]: (...args: any[]) => void }
}
interface CustomElement extends HTMLElement {

View File

@ -35,7 +35,9 @@
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
"typeRoots": ["./src/types"], /* Specify multiple folders that act like './node_modules/@types'. */
"typeRoots": [
"./src/types"
] /* Specify multiple folders that act like './node_modules/@types'. */,
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */