You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
|
2 years ago
|
import { Hooks } from "./hooks";
|
||
|
|
import { AttachData } from "./helpers/attachto";
|
||
|
|
import { VNodeStyle } from "./modules/style";
|
||
|
|
import { On } from "./modules/eventlisteners";
|
||
|
|
import { Attrs } from "./modules/attributes";
|
||
|
|
import { Classes } from "./modules/class";
|
||
|
|
import { Props } from "./modules/props";
|
||
|
|
import { Dataset } from "./modules/dataset";
|
||
|
|
export declare type Key = string | number | symbol;
|
||
|
|
export interface VNode {
|
||
|
|
sel: string | undefined;
|
||
|
|
data: VNodeData | undefined;
|
||
|
|
children: Array<VNode | string> | undefined;
|
||
|
|
elm: Node | undefined;
|
||
|
|
text: string | undefined;
|
||
|
|
key: Key | undefined;
|
||
|
|
}
|
||
|
|
export interface VNodeData {
|
||
|
|
props?: Props;
|
||
|
|
attrs?: Attrs;
|
||
|
|
class?: Classes;
|
||
|
|
style?: VNodeStyle;
|
||
|
|
dataset?: Dataset;
|
||
|
|
on?: On;
|
||
|
|
attachData?: AttachData;
|
||
|
|
hook?: Hooks;
|
||
|
|
key?: Key;
|
||
|
|
ns?: string;
|
||
|
|
fn?: () => VNode;
|
||
|
|
args?: any[];
|
||
|
|
is?: string;
|
||
|
|
[key: string]: any;
|
||
|
|
}
|
||
|
|
export declare function vnode(sel: string | undefined, data: any | undefined, children: Array<VNode | string> | undefined, text: string | undefined, elm: Element | DocumentFragment | Text | undefined): VNode;
|