Last active
January 25, 2020 14:52
-
-
Save mvasin/c5bf561fdc88af1ce31079931af3a095 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// POST request body to /stub BFF endpoint | |
interface StubSetup { | |
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | |
path: string | |
headers: { [headerName: string]: string } | |
responseCode: number | |
responseBody: any | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment