@crnk/angular-ngrx
Version:
Angular helper library for ngrx-json-api and crnk:
22 lines (21 loc) • 832 B
TypeScript
import { BeanPath, StringPath } from '../expression/';
import { MetaCollectionType } from './meta.collection.type';
import { QMetaElement } from './meta.element';
import { QMetaType } from './meta.type';
import { ManyQueryResult, OneQueryResult } from 'ngrx-json-api';
export interface MetaListType extends MetaCollectionType {
}
export interface MetaListTypeResult extends OneQueryResult {
data?: MetaListType;
}
export interface MetaListTypeListResult extends ManyQueryResult {
data?: Array<MetaListType>;
}
export declare class QMetaListType extends BeanPath<MetaListType> {
metaId: string;
id: StringPath;
type: StringPath;
relationships: QMetaType.QRelationships;
attributes: QMetaElement.QAttributes;
}
export declare let createEmptyMetaListType: (id: string) => MetaListType;