1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-16 09:08:52 +00:00
This commit is contained in:
2025-07-30 18:04:17 +02:00
parent a4bd3b5069
commit 7b2444bf6f

10
compiler/index.ts Normal file
View File

@@ -0,0 +1,10 @@
import { Card } from '../interfaces'
import { globSync } from 'glob'
type AugmentedCard = Card & {
image?: string
}
type ExportedCards = Array<AugmentedCard>
globSync()