11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import { rankType } from '../shared/protocols/rank/PtlOpen';
|
|
import { rankInfo } from '../shared/protocols/type';
|
|
|
|
|
|
export type CollectionRank = rankInfo;
|
|
|
|
export type CollectionRankList = {
|
|
type: rankType;
|
|
idKey: string;
|
|
data: rankInfo;
|
|
}; |