Added simple Endpoint for strings

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2021-03-11 11:15:11 +01:00
parent d42b0057c7
commit d5c57fa6c7
Signed by: Florian Bouillon
GPG Key ID: 50BD648F12C86AB6

7
interfaces.d.ts vendored
View File

@ -233,3 +233,10 @@ export interface Card<SetType extends SetResume = SetResume> extends CardResume
energyType?: 'Normal' | // https://www.tcgdex.net/database/ecard/ecard1/160
'Special' // https://www.tcgdex.net/database/ecard/ecard1/158
}
export type StringEndpointList = Array<string>
export interface StringEndpoint {
name: string
cards: Array<CardResume>
}