Skip to content

Commit

Permalink
Add tag property to ParadoxElementOptions
Browse files Browse the repository at this point in the history
Solves #23
  • Loading branch information
alexsc6955 committed Jan 18, 2024
1 parent dc8d605 commit 1fb23f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/core/Router.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export type RouterProps = {
queryString?: string;
params?: RouteParams;
baseUrl?: string;
[key: string]: any;
};
export type Route = {
path: string;
Expand Down
1 change: 1 addition & 0 deletions build/core/buildElement/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export type ParadoxElementOptions = {
tag?: string;
id?: string;
classList?: string;
children?: ParadoxElementOptions[];
Expand Down
1 change: 1 addition & 0 deletions src/core/buildElement/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export type ParadoxElementOptions = {
tag?: string;
id?: string;
classList?: string;
children?: ParadoxElementOptions[];
Expand Down

0 comments on commit 1fb23f4

Please sign in to comment.