ziko
Version:
A versatile JavaScript library offering a rich set of Hyperscript Based UI components, advanced mathematical utilities, interactivity ,animations, client side routing and more ...
16 lines (12 loc) • 413 B
TypeScript
export declare class UseRoot<PropMap extends Record<string, string>> {
constructor(PropsMap: PropMap, options?: UseRootOptions);
currentPropsMap: PropMap;
namespace: string;
ValidateCssProps: boolean;
/** Dynamically created CSS variable references */
[K in keyof PropMap]: string;
/**
* Apply a new set of properties
*/
use(PropsMap: PropMap): this;
}