a reactive (signals based) hypermedia web framework (wip) stormlightlabs.github.io/volt/
hypermedia frontend signals
at main 168 B view raw
1export type Optional<T> = T | undefined; 2 3export type Nullable<T> = T | null; 4 5export type Timer = ReturnType<typeof setTimeout>; 6 7export type None = null | undefined;