mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
5 lines
57 B
TypeScript
5 lines
57 B
TypeScript
export type List<T> = {
|
|
count: number
|
|
list: Array<T>
|
|
}
|