update to v2.2.0
add library version getter fix demo issues
This commit is contained in:
@@ -5,13 +5,13 @@ export interface FluentDomObject {
|
||||
app: (obj: FluentDomObject | HTMLElement | string) => FluentDomObject;
|
||||
append: (obj: FluentDomObject | HTMLElement | string) => FluentDomObject;
|
||||
attr: (name: string, value: string) => FluentDomObject;
|
||||
c: (tagName: string) => FluentDomObject;
|
||||
|
||||
create: (tagName: string) => FluentDomObject;
|
||||
c: (tagName: string) => FluentDomObject;
|
||||
className: (className: string) => FluentDomObject;
|
||||
clear: () => FluentDomObject;
|
||||
cls: (className: string) => FluentDomObject;
|
||||
clr: () => FluentDomObject;
|
||||
cls: (className: string) => FluentDomObject;
|
||||
create: (tagName: string) => FluentDomObject;
|
||||
|
||||
h: (url: string) => FluentDomObject;
|
||||
href: (url: string) => FluentDomObject;
|
||||
@@ -51,4 +51,7 @@ export interface FluentDomObject {
|
||||
listener: () => {},
|
||||
optionsOrUseCapture?: boolean | object,
|
||||
) => FluentDomObject;
|
||||
|
||||
v: () => string;
|
||||
version: () => string;
|
||||
}
|
||||
|
Reference in New Issue
Block a user