@zup-it/beagle-backend-cli
Version:
CLI for Beagle Backend using TypeScript
23 lines (22 loc) • 582 B
TypeScript
export interface GenerateScreenOptions {
/**
* The screen will have parameters on the url.
*/
withRouteParams: boolean;
/**
* The screen will have headers to be sent in the request.
*/
withHeaders: boolean;
/**
* The screen will have a request body. Invalid for "GET" requests.
*/
withBody: boolean;
/**
* The screen will have properties in the urls query.
*/
withQuery: boolean;
/**
* The screen will have properties to be set in the navigation context.
*/
withNavigationContext: boolean;
}