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