UNPKG

lux-framework

Version:

Build scalable, Node.js-powered REST APIs with almost no code.

10 lines (8 loc) 202 B
// @flow import type Serializer from './index'; import type { Model } from '../database'; export type Serializer$opts<T: Model> = { model: Class<T>; parent: ?Serializer<*>; namespace: string; };