Skip to content

Commit

Permalink
build: fix ts types mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashornych committed Dec 6, 2023
1 parent 45dbff7 commit a622976
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ const props = withDefaults(defineProps<{
const name = props.prefix ? `${props.prefix} name variants` : 'Name variants'
const properties: Property[] = [
{ name: 'camelCase', value: new PropertyValue(props.nameVariants.camelCase as String) },
{ name: 'kebab-case', value: new PropertyValue(props.nameVariants.kebabCase as String) },
{ name: 'PascalCase', value: new PropertyValue(props.nameVariants.pascalCase as String) },
{ name: 'snake_case', value: new PropertyValue(props.nameVariants.snakeCase as String) },
{ name: 'UPPER_CASE', value: new PropertyValue(props.nameVariants.upperSnakeCase as String) }
{ name: 'camelCase', value: new PropertyValue(props.nameVariants.camelCase) },
{ name: 'kebab-case', value: new PropertyValue(props.nameVariants.kebabCase) },
{ name: 'PascalCase', value: new PropertyValue(props.nameVariants.pascalCase) },
{ name: 'snake_case', value: new PropertyValue(props.nameVariants.snakeCase) },
{ name: 'UPPER_CASE', value: new PropertyValue(props.nameVariants.upperSnakeCase) }
]
</script>

Expand Down

0 comments on commit a622976

Please sign in to comment.