Skip to content

Instantly share code, notes, and snippets.

@mvasin
Last active January 25, 2020 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvasin/c5bf561fdc88af1ce31079931af3a095 to your computer and use it in GitHub Desktop.
Save mvasin/c5bf561fdc88af1ce31079931af3a095 to your computer and use it in GitHub Desktop.
// 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