File size: 261 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
export const DROP_NOTICE = 'DROP_NOTICE'
export type DropNoticeResponse = {
type: typeof DROP_NOTICE
data: {
noticeId: string
}
}
export const dropNotice = (noticeId: string): DropNoticeResponse => ({
type: 'DROP_NOTICE',
data: { noticeId },
})
|