7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
|
import {Event} from "react-big-calendar";
|
||
|
export interface TaskEvent extends Event {
|
||
|
id?: any;
|
||
|
state?:any;
|
||
|
priority?:any;
|
||
|
}
|