content-item.d.ts 520 B

123456789101112131415161718192021
  1. import { ContentParams } from "./content-params";
  2. export declare class ContentItem {
  3. data: ContentParams;
  4. private hash;
  5. private type;
  6. private myTagsWithoutAll;
  7. private allLinks;
  8. private userLinks;
  9. private systemLinks;
  10. private repliable;
  11. private price?;
  12. private priceFormatted?;
  13. private fromTarget?;
  14. private toTarget?;
  15. private fromContactId?;
  16. private toContactId?;
  17. private media?;
  18. constructor(hash: string, props: ContentParams);
  19. private formatCents;
  20. }