functionalscript 0.3.5 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/html/module.f.d.ts +1 -1
- package/package.json +1 -1
package/html/module.f.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export type Element = Element1 | Element2;
|
|
|
6
6
|
type Attributes = {
|
|
7
7
|
readonly [k in string]: string;
|
|
8
8
|
};
|
|
9
|
-
type Node = Element | string;
|
|
9
|
+
export type Node = Element | string;
|
|
10
10
|
export declare const element: (element: Element) => List<string>;
|
|
11
11
|
export declare const html: (_: Element) => List<string>;
|
|
12
12
|
export declare const htmlToString: (_: Element) => string;
|