type 정의

Younghwan Cha·2022년 11월 14일
0

typeScript

목록 보기
3/3
export type ClaimDAO = {
  id: string;
  start_time: string;
  end_time: string;
  type: AddressType;
};

export type ClaimRecord = {
  id: string;
  start_time: string;
  end_time: string;
  thread: string;
  type: AddressType;
  status: ClaimStatus;
};

&
extends 참고

profile
개발 기록

0개의 댓글