UNPKG

@jrmc/adonis-attachment

Version:

Turn any field on your Lucid model to an attachment data type

14 lines 486 B
/** * @jrmc/adonis-attachment * * @license MIT * @copyright Jeremy Chaufourier <jeremy@chaufourier.fr> */ import type { BinPaths } from '../types/config.js'; import type { Converter as ConverterInterface, ConverterOptions } from '../types/converter.js'; export default class Converter implements ConverterInterface { options?: ConverterOptions; binPaths?: BinPaths; constructor(options?: ConverterOptions, binPaths?: BinPaths); } //# sourceMappingURL=converter.d.ts.map