props.ts 149 B

123456789
  1. export interface UserProps {
  2. user: {
  3. id: string,
  4. name: string,
  5. email: string,
  6. permissions: [string],
  7. interests: [string]
  8. }
  9. }