import { ISerializable, Serializable } from "@js-soft/ts-serval"; import { CoreDate, ICoreDate } from "@nmshd/core-types"; import { CoreBuffer, ICoreBuffer } from "@nmshd/crypto"; export interface ISendFileParameters extends ISerializable { title?: string; description?: string; filename: string; mimetype: string; expiresAt: ICoreDate; filemodified?: ICoreDate; buffer: ICoreBuffer; tags?: string[]; } export declare class SendFileParameters extends Serializable implements ISendFileParameters { title?: string; description?: string; filename: string; mimetype: string; expiresAt: CoreDate; filemodified?: CoreDate; buffer: CoreBuffer; tags?: string[]; static from(value: ISendFileParameters): SendFileParameters; } //# sourceMappingURL=SendFileParameters.d.ts.map