@crnk/angular-ngrx
Version:
Angular helper library for ngrx-json-api and crnk:
21 lines (20 loc) • 770 B
TypeScript
import { BeanPath, StringPath } from '../expression/';
import { QMetaElement } from './meta.element';
import { MetaType, QMetaType } from './meta.type';
import { ManyQueryResult, OneQueryResult } from 'ngrx-json-api';
export interface MetaEnumType extends MetaType {
}
export interface MetaEnumTypeResult extends OneQueryResult {
data?: MetaEnumType;
}
export interface MetaEnumTypeListResult extends ManyQueryResult {
data?: Array<MetaEnumType>;
}
export declare class QMetaEnumType extends BeanPath<MetaEnumType> {
metaId: string;
id: StringPath;
type: StringPath;
relationships: QMetaType.QRelationships;
attributes: QMetaElement.QAttributes;
}
export declare let createEmptyMetaEnumType: (id: string) => MetaEnumType;