Skip to content

Commit

Permalink
fix(core): better types
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed Mar 13, 2023
1 parent 9181449 commit ed7f654
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/core/lib/colors/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const COLORS: Object;
export const COLORS: object;

export const COLOR_PARSERS: Array<Object>;
export const COLOR_PARSERS: Array<object>;

export function hsva2hsla({ h, s, v, a }: {
h: number;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/dom/index.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export function ensureNode(selectorOrNode: Node|String): Node|String;
export function ensureNode(selectorOrNode: Node|string): Node|string;

0 comments on commit ed7f654

Please sign in to comment.