From 65bf34d1b87e9c9f54b885f93c9271b1fce69a36 Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Mon, 9 Apr 2018 19:28:54 -0400 Subject: [PATCH] Add basic `Attachment` type definition --- ts/types/Attachment.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ts/types/Attachment.ts diff --git a/ts/types/Attachment.ts b/ts/types/Attachment.ts new file mode 100644 index 000000000..68dc4e145 --- /dev/null +++ b/ts/types/Attachment.ts @@ -0,0 +1,21 @@ +import is from '@sindresorhus/is'; + +import { MIMEType } from './MIME'; + + +export interface Attachment { + fileName?: string; + contentType?: MIMEType; + size?: number; + data: ArrayBuffer; + + // // Omit unused / deprecated keys: + // schemaVersion?: number; + // id?: string; + // width?: number; + // height?: number; + // thumbnail?: ArrayBuffer; + // key?: ArrayBuffer; + // digest?: ArrayBuffer; + // flags?: number; +}