import { Action } from '@ngrx/store'; import { CourseSchoolListModel } from '../model/course-school-list.model'; export declare enum CourseSchoolAgencyListActionTypes { LoadCourseSchoolAgencyList = "[Cousre School Agency List] Load", LoadCourseSchoolAgencyListSuccess = "[Cousre School Agency List] Load Success", LoadCourseSchoolAgencyListFail = "[Cousre School Agency List] Load Fail" } export declare class LoadCourseSchoolAgencyListAction implements Action { payload: number; readonly type: string; constructor(payload: number); } export declare class LoadCourseSchoolAgencyListSuccessAction implements Action { payload: CourseSchoolListModel; readonly type: string; constructor(payload: CourseSchoolListModel); } export declare class LoadCourseSchoolAgencyListFailAction implements Action { payload?: any; readonly type: string; constructor(payload?: any); } export declare type CourseSchoolAgencyListActions = LoadCourseSchoolAgencyListAction | LoadCourseSchoolAgencyListSuccessAction | LoadCourseSchoolAgencyListFailAction;