rvx
Version:
A signal based rendering library
12 lines (11 loc) • 319 B
TypeScript
import { Context } from "./context.js";
interface EnvContext extends Context<unknown> {
get current(): typeof globalThis;
}
/**
* A context that is used to access all DOM related APIs.
*
* This can be used to run rvx applications in non browser environments.
*/
export declare const ENV: EnvContext;
export {};