@jrmc/adonis-attachment
Version:
Turn any field on your Lucid model to an attachment data type
15 lines • 399 B
TypeScript
/**
* @jrmc/adonis-attachment
*
* @license MIT
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
*/
import { BaseCommand } from '@adonisjs/core/ace';
export default class MakeConverter extends BaseCommand {
static commandName: string;
static description: string;
name: string;
protected stubPath: string;
run(): Promise<void>;
}
//# sourceMappingURL=converter.d.ts.map