aberdeen 1.3.0 → 1.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aberdeen",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "author": "Frank van Viegen",
5
5
  "main": "dist-min/aberdeen.js",
6
6
  "devDependencies": {
package/src/aberdeen.ts CHANGED
@@ -1943,16 +1943,7 @@ const SPECIAL_PROPS: { [key: string]: (el: Element, value: any) => void } = {
1943
1943
  * ```
1944
1944
  */
1945
1945
 
1946
- export function $(
1947
- ...args: (
1948
- | string
1949
- | null
1950
- | undefined
1951
- | false
1952
- | (() => void)
1953
- | Record<string, any>
1954
- )[]
1955
- ): undefined | Element {
1946
+ export function $(...args: any[]): undefined | Element {
1956
1947
  let el: undefined | Element = currentScope.el;
1957
1948
  let svg: boolean = currentScope.svg
1958
1949