您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

userInterface.ts 144B

12345678
  1. export interface UserData {
  2. address: string;
  3. address2: string;
  4. city: string;
  5. country: string;
  6. fullName: string;
  7. postcode: string;
  8. }