Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. export interface MediaApiResponseItem {
  2. name?: string;
  3. bucket?: string;
  4. size?:number;
  5. presignedUrl?:string;
  6. type?:'item';
  7. }
  8. export interface MediaApiReponsePayload {
  9. [children:string] : MediaApiReponsePayload | MediaApiResponseItem
  10. }
  11. export interface MediaApiResponse {
  12. payload : {
  13. [name:string] : MediaApiReponsePayload
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement