@crnk/angular-ngrx
Version:
Angular helper library for ngrx-json-api and crnk:
22 lines (21 loc) • 823 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 MetaSetType extends MetaCollectionType {
}
export interface MetaSetTypeResult extends OneQueryResult {
data?: MetaSetType;
}
export interface MetaSetTypeListResult extends ManyQueryResult {
data?: Array<MetaSetType>;
}
export declare class QMetaSetType extends BeanPath<MetaSetType> {
metaId: string;
id: StringPath;
type: StringPath;
relationships: QMetaType.QRelationships;
attributes: QMetaElement.QAttributes;
}
export declare let createEmptyMetaSetType: (id: string) => MetaSetType;