79181498

Date: 2024-11-12 14:25:20
Score: 1
Natty:
Report link

You can define this type like this:

interface Properties {
  Name: string;
  Description: string;
  online: boolean;
}

interface Result {
  [key: string]: {
    properties: Properties;
  };
}

interface ResultData {
  results: Result[];
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: fable