This commit is contained in:
Chris Kruining 2024-12-12 16:40:13 +01:00
parent d219ae1f9a
commit b23db1d5a8
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
21 changed files with 579 additions and 818 deletions

8
src/global.d.ts vendored
View file

@ -2,4 +2,12 @@
interface FileSystemHandle {
getUniqueId(): Promise<string>;
}
declare module "solid-js" {
namespace JSX {
interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
indeterminate?: boolean;
}
}
}