Skip to content

Commit

Permalink
Merge pull request #180 from suvarnakale/release-1.0.0
Browse files Browse the repository at this point in the history
Issue #PS-0000 chore: interfaces added
  • Loading branch information
itsvick authored Aug 23, 2024
2 parents f426def + aad07f6 commit 18cb0f2
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/utils/Interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,15 +453,19 @@ export interface scheduleEventParam {
}

export interface eventFilters {
date?: string;
startDate?: string;
endDate?: string;
date?: dateRange;
startDate?: dateRange;
endDate?: dateRange;
eventType?: [];
title?: string;
status?: string[];
cohortId?: string;
}

export interface dateRange {
after?: string;
before?: string;
}
export interface CoursePlannerData {
id: string;
subject: string;
Expand Down Expand Up @@ -591,9 +595,9 @@ export interface BottomDrawerProps {
}

export interface IAssessmentStatusOptions {
userId: string[],
contentId: string[],
batchId: string
userId: string[];
contentId: string[];
batchId: string;
}

export interface GetTargetedSolutionsParams {
Expand All @@ -615,4 +619,3 @@ export interface EditEvent {
isMainEvent: boolean;
status: string;
}

0 comments on commit 18cb0f2

Please sign in to comment.