cecon-interfaces 1.5.23 → 1.5.24

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.23",
3
+ "version": "1.5.24",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2,5 +2,6 @@ export declare enum EMineTypeFile {
2
2
  PNG = "image/png",
3
3
  JPEG = "image/jpeg",
4
4
  MPFOUR = "video/mp4",
5
- OGG = "video/ogg"
5
+ OGG = "video/ogg",
6
+ WEBP = "image/webp"
6
7
  }
@@ -7,4 +7,5 @@ var EMineTypeFile;
7
7
  EMineTypeFile["JPEG"] = "image/jpeg";
8
8
  EMineTypeFile["MPFOUR"] = "video/mp4";
9
9
  EMineTypeFile["OGG"] = "video/ogg";
10
+ EMineTypeFile["WEBP"] = "image/webp";
10
11
  })(EMineTypeFile || (exports.EMineTypeFile = EMineTypeFile = {}));
@@ -1,5 +1,7 @@
1
+ import { EMineTypeFile } from "../enums";
1
2
  import { ETypeFile } from "../enums/type-file.enum";
2
3
  export interface IFile {
4
+ mineType: EMineTypeFile;
3
5
  icon: string;
4
6
  lastModified: Date;
5
7
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.23",
3
+ "version": "1.5.24",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",