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