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 4 additions and 5 deletions
Showing only changes of commit 5344a58e10 - Show all commits

View File

@ -1,8 +1,3 @@
interface CustomElement extends HTMLElement {
setState(key_path: string, value: unknown): void
getState(key_path: string): unknown
}
interface ComponentOptions { interface ComponentOptions {
tag: string tag: string
template: string template: string

4
src/types.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
interface CustomElement extends HTMLElement {
setState(key_path: string, value: unknown): void
getState(key_path: string): unknown
}