src/lib/src/view-data.ts
Properties |
body |
body:
|
Type : T
|
Defined in src/lib/src/view-data.ts:15
|
config |
config:
|
Type : ViewDef
|
Defined in src/lib/src/view-data.ts:9
|
headers |
headers:
|
Type : ReadOnlyHeaders
|
Defined in src/lib/src/view-data.ts:14
|
status |
status:
|
Type : number
|
Defined in src/lib/src/view-data.ts:12
|
statusText |
statusText:
|
Type : string
|
Defined in src/lib/src/view-data.ts:13
|
target |
target:
|
Type : Navigable
|
Defined in src/lib/src/view-data.ts:8
|
type |
type:
|
Type : string
|
Defined in src/lib/src/view-data.ts:10
|
url |
url:
|
Type : string
|
Defined in src/lib/src/view-data.ts:11
|
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;
}