8 lines
160 B
TypeScript
8 lines
160 B
TypeScript
import { taskType } from '../shared/protocols/task/type';
|
|
|
|
|
|
export type CollectionTask = taskType & {
|
|
/**玩家uid */
|
|
uid: string;
|
|
taskid: number
|
|
}; |