@jrmc/adonis-attachment
Version:
Turn any field on your Lucid model to an attachment data type
15 lines • 520 B
TypeScript
/**
* @jrmc/adonis-attachment
*
* @license MIT
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
*/
import type { Exif, Input } from '../types/input.js';
import { ResolvedAttachmentConfig } from '../define_config.js';
import { Converter } from '../types/converter.js';
type KnownConverters = Record<string, Converter>;
declare const _default: {
exif(input: Input, config: ResolvedAttachmentConfig<KnownConverters>): Promise<Exif | undefined>;
};
export default _default;
//# sourceMappingURL=exif.d.ts.map