UNPKG

express-ipld

Version:

Express middleware for dag-json and dag-cbor IPLD codecs

6 lines (5 loc) 230 B
import express from "express"; export type ParseOptions = { type?: string | string[]; }; export default function ipld(options?: ParseOptions): (req: express.Request, res: express.Response, next: express.NextFunction) => void;