# SupportedDocumentType

## Content

# Type Alias: SupportedDocumentType

```ts
type SupportedDocumentType = 
  | {
  platform: "rpx";
  type: "report";
}
  | 
  | {
  platform: "rdlx";
  subType: "fpl";
  type: "report";
}
  | {
  platform: "rdlx";
  subType: "msl";
  type: "report";
}
  | {
  platform: "rdlx";
  subType: "msl";
  type: "dashboard";
}
  | {
  platform: "rdlx";
  subType: "msl";
  type: "master";
};
```

Type of documents supported by the AR Web Designer
