Skip to content

Commit

Permalink
refactor(runtime): add missing array type
Browse files Browse the repository at this point in the history
  • Loading branch information
AviVahl committed Dec 13, 2024
1 parent 4489412 commit f801b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function createStateClass(namespace: string, stateName: string, stateValue: Stat
}

export function classesRuntime(namespace: string): string {
var classNames = [];
var classNames: string[] = [];

for (var i = 1; i < arguments.length; i++) {
// eslint-disable-next-line prefer-rest-params
Expand Down

0 comments on commit f801b61

Please sign in to comment.