import { Transformer } from '@/lib/Transformer/Transformer'; export class AttachmentTransformer extends Transformer { /** * Exclude attributes. * @returns {string[]} */ public excludeAttributes = (): string[] => { return ['*']; }; /** * Includeded attributes. * @returns {string[]} */ public includeAttributes = (): string[] => { return ['extension', 'key']; }; }