Preview: set-notice-progress.ts
Size: 375 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/src/frontend/store/actions/set-notice-progress.ts
export const SET_NOTICE_PROGRESS = 'SET_NOTICE_PROGRESS'
export type SetNoticeProgress = {
noticeId: string;
progress: number;
}
export type SetNoticeProgressResponse = {
type: typeof SET_NOTICE_PROGRESS;
data: SetNoticeProgress;
}
export const setNoticeProgress = (data: SetNoticeProgress): SetNoticeProgressResponse => ({
type: SET_NOTICE_PROGRESS,
data,
})
Directory Contents
Dirs: 0 × Files: 18