UNPKG

moleculer-mongobubble

Version:

A Moleculer module for generating CRUD APIs using MongoBubble.

7 lines (6 loc) 205 B
import { Document } from 'bson'; import { Context } from 'moleculer'; export declare const getById: { readonly rest: "GET /:id"; readonly handler: (ctx: Context<Document>) => Promise<Document>; };