123456789101112131415161718192021 |
- declare module 'wangeditor-for-react';
- export enum Type {
- add,
- edit,
- }
- export type PostOrPutNoticeType = {
- id?: string;
- content: string;
- label: string;
- type: Type;
- imgUrl: string;
- };
- export interface noticeModalProps {
- closeModal: () => void;
- curNoticeData: Record<string, any>;
- visible: boolean;
- type: Type;
- GetNotice: () => void;
- }
|