File

projects/wvr-elements/src/lib/core/manifest/manifest-entry-request.ts

Index

Properties

Properties

body
body: any
Type : any
Optional
bodyHttpParams
bodyHttpParams: "fromObject" | "fromString"
Type : "fromObject" | "fromString"
Optional
decode
decode: Array<string>
Type : Array<string>
Optional
entryName
entryName: string
Type : string
manifestName
manifestName: string
Type : string
Optional
method
method: RequestMethod
Type : RequestMethod
Optional
onFailure
onFailure: Array<Action>
Type : Array<Action>
Optional
onSuccess
onSuccess: Array<Action>
Type : Array<Action>
Optional
options
options: RequestOptions
Type : RequestOptions
Optional
import { Action } from '@ngrx/store';
import { RequestMethod } from '../rest/request-method';
import { RequestOptions } from '../rest/request-options';

export interface ManifestEntryRequest {
  manifestName?: string;
  entryName: string;
  method?: RequestMethod;
  body?: any;
  options?: RequestOptions;
  decode?: Array<string>;
  bodyHttpParams?: 'fromObject' | 'fromString';
  onSuccess?: Array<Action>;
  onFailure?: Array<Action>;
}

results matching ""

    No results matching ""