defaultkavy
b3f28dbf86
change: Router.open(), .replace() .back(), .events change to static add: $.open(), $.replace(), $.back() add: $.html() convert html string to $Element update: $State support output format update: $Util.from() convert children node to $Element change: $Node.parent change to getter change: using $StateArgument<T> new: $SVGElement, $HTMLElement new: $AsyncNode add: $Image.load()
8 lines
279 B
TypeScript
8 lines
279 B
TypeScript
import { $Element, $ElementOptions } from "./$Element"
|
|
|
|
export interface $SVGOptions extends $ElementOptions {}
|
|
export class $SVGElement<S extends SVGElement> extends $Element<S> {
|
|
constructor(tagname: string, options?: $SVGOptions) {
|
|
super(tagname, options);
|
|
}
|
|
} |