Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenClontz committed Oct 18, 2024
1 parent bfd0104 commit 9c76ec3
Showing 1 changed file with 30 additions and 20 deletions.
50 changes: 30 additions & 20 deletions packages/viewer/src/components/Traits/Show.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,36 @@
export let property: Property
export let trait: Trait | undefined
export let proof: ProofT | undefined
export let meta: {
description: string;
refs: ({
name: string;
} & ({
doi: string;
} | {
wikipedia: string;
} | {
mr: string;
} | {
mr: number;
} | {
mathse: number;
} | {
mo: number;
} | {
zb: string;
}))[];
} | undefined
export let meta:
| {
description: string
refs: ({
name: string
} & (
| {
doi: string
}
| {
wikipedia: string
}
| {
mr: string
}
| {
mr: number
}
| {
mathse: number
}
| {
mo: number
}
| {
zb: string
}
))[]
}
| undefined
import { contributingUrl } from '@/constants'
</script>

Expand Down

0 comments on commit 9c76ec3

Please sign in to comment.