融动泵加液(加酸)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
193 B

2 weeks ago
  1. declare namespace Point {
  2. interface Point extends UpdateParams {
  3. name: string
  4. code: string
  5. type: string
  6. }
  7. interface UpdateParams {
  8. id?: number
  9. position?: string
  10. }
  11. }