[ABANDONDED] Set of "apps" for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
744 B

5 years ago
5 years ago
  1. export interface ClassDictionary {
  2. [name: string]: boolean
  3. }
  4. export interface PluginOptions {
  5. }
  6. export interface GiphyGif {
  7. type: string
  8. id: string
  9. slug: string
  10. url: string
  11. bitly_url: string
  12. embed_url: string
  13. username: string
  14. source: string
  15. rating: string
  16. content_url: string
  17. title: string
  18. images: {
  19. fixed_height: {
  20. url: string
  21. }
  22. fixed_height_still: {
  23. url: string
  24. }
  25. fixed_height_downsampled: {
  26. url: string
  27. }
  28. }
  29. }
  30. export interface GiphyPagination {
  31. offset: number
  32. total_count: number
  33. count: number
  34. }
  35. export interface GiphyResponse {
  36. data: GiphyGif[]
  37. pagination: GiphyPagination
  38. }