import { ICalendarExpBarAbility } from '../ability'; import { ICalendarExpBarStore } from '../store'; import { IExpCtrlController } from './i-exp-ctrl-controller'; /** * 日历导航栏控制器接口 * * @export * @interface ICalendarExpBarController * @extends {IExpCtrlController} * @template S * @template A */ export type ICalendarExpBarController< S extends ICalendarExpBarStore, A extends ICalendarExpBarAbility > = IExpCtrlController;