Skip to content

Commit

Permalink
added bare functions for interface
Browse files Browse the repository at this point in the history
  • Loading branch information
vaaranan-y committed Nov 2, 2023
1 parent 44c7c75 commit c415721
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions backend/typescript/services/interfaces/volunteerSignup.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
interface IVolunteerSignup {

/**
* Gets volunteer signup
*/
getVolunteerSignup(): Promise<void>

/**
* Posts volunteer signup
*/
postVolunteerSignup(): Promise<void>

/**
* Edits volunteer signup
*/
editVolunteerSignup(): Promise<void>

}

export default IVolunteerSignup;
Expand Down

0 comments on commit c415721

Please sign in to comment.