@jrmc/adonis-attachment
Version:
Turn any field on your Lucid model to an attachment data type
16 lines • 338 B
TypeScript
/**
* @jrmc/adonis-attachment
*
* @license MIT
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
*/
export type AttachmentEventPayload = {
tableName: string;
attributeName: string;
primary: {
key: string;
value: string | number;
};
variants?: string[];
};
//# sourceMappingURL=event.d.ts.map