Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
261 Bytes
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 },
})