File

src/app/modules/shared/interfaces/requestParam.ts

Description

Parameters for api calls

Properties

data
data: any
Type : any

http data

header
header: { [key: string]: string | string[]; }
Type : { [key: string]: string | string[]; }

http header

param
param: any
Type : any

http params

url
url: string
Type : string

http data

export interface RequestParam {
  /**
   * http data
  */
url: string;
  /**
   * http params
  */
param?: any;
  /**
   * http header
  */
header?: {[key: string]: string | string[]};
  /**
   * http data
  */
data?: any;
}

results matching ""

    No results matching ""