Implement click to save for document list
parent
8ca5a391af
commit
b74b761255
@ -1,8 +0,0 @@
|
||||
/**
|
||||
* @prettier
|
||||
*/
|
||||
import { Message } from '../propTypes/Message';
|
||||
|
||||
export interface ItemClickEvent {
|
||||
message: Message;
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* @prettier
|
||||
*/
|
||||
export type AttachmentType = 'media' | 'documents';
|
@ -0,0 +1,10 @@
|
||||
/**
|
||||
* @prettier
|
||||
*/
|
||||
import { AttachmentType } from './AttachmentType';
|
||||
import { Message } from './Message';
|
||||
|
||||
export interface ItemClickEvent {
|
||||
message: Message;
|
||||
type: AttachmentType;
|
||||
}
|
Loading…
Reference in New Issue