Co-authored-by: liyasthomas <liyascthomas@gmail.com> Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
/**
|
|
* Defines how a Shortcode is represented in the ShortcodeListAdapter
|
|
*/
|
|
export interface Shortcode {
|
|
id: string
|
|
request: string
|
|
createdOn: Date
|
|
}
|