6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
/** 数据对照 Response */
|
|
export interface MallDataComparisonResp<T> {
|
|
value: T;
|
|
reference: T;
|
|
}
|