File

src/lib/src/view-data.ts

Index

Properties

Properties

body
body: T
Type : T
config
config: ViewDef
Type : ViewDef
headers
headers: ReadOnlyHeaders
Type : ReadOnlyHeaders
status
status: number
Type : number
statusText
statusText: string
Type : string
target
target: Navigable
Type : Navigable
type
type: string
Type : string
url
url: string
Type : string
import { ViewDef } from './view-definition';
import { ReadOnlyHeaders } from './read-only-headers';
import { Navigable } from './navigable';


export interface ViewData<T> {

  readonly target: Navigable;
  readonly config: ViewDef;
  readonly type: string;
  readonly url: string;
  readonly status: number;
  readonly statusText: string;
  readonly headers: ReadOnlyHeaders;
  readonly body: T;

}

results matching ""

    No results matching ""