lux-framework
Version:
Build scalable, Node.js-powered REST APIs with almost no code.
13 lines (11 loc) • 387 B
JavaScript
// @flow
import type Controller from '../controller';
import type Serializer from '../serializer';
import type { Model } from '../database';
import type { FreezeableMap } from '../freezeable';
export type Loader = (type: string) => any;
export type Bundle$Namespace<T> = FreezeableMap<string, T>;
export type Bundle$NamespaceGroup<T> = FreezeableMap<
string,
Bundle$Namespace<T>
>;