@jrmc/adonis-attachment
Version:
Turn any field on your Lucid model to an attachment data type
13 lines • 459 B
TypeScript
/**
* @jrmc/adonis-attachment
*
* @license MIT
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
*/
import type { ConverterAttributes } from '../types/converter.js';
import type { Input } from '../types/input.js';
import Converter from './converter.js';
export default class AutodetectConverter extends Converter {
handle({ input, options }: ConverterAttributes): Promise<Input | undefined>;
}
//# sourceMappingURL=autodetect_converter.d.ts.map