Shortcode.ts 158 B

12345678
  1. /**
  2. * Defines how a Shortcode is represented in the ShortcodeListAdapter
  3. */
  4. export interface Shortcode {
  5. id: string
  6. request: string
  7. createdOn: Date
  8. }