Skip to content

Commit d28e259

Browse files
author
vakrilov
committed
Remove redundant definitions
1 parent 7152035 commit d28e259

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

tns-core-modules/tns-core-modules.d.ts

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,6 @@ interface Body {
1414
formData() : Promise<FormData>;
1515
}
1616

17-
declare enum RequestMode { "same-origin", "no-cors", "cors" }
18-
declare enum RequestCredentials { "omit", "same-origin", "include" }
19-
declare enum RequestCache { "default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached" }
20-
21-
interface Blob {
22-
readonly size: number;
23-
readonly type: string;
24-
msClose(): void;
25-
msDetachStream(): any;
26-
slice(start?: number, end?: number, contentType?: string): Blob;
27-
}
28-
29-
declare var Blob: {
30-
prototype: Blob;
31-
new (blobParts?: any[], options?: BlobPropertyBag): Blob;
32-
}
33-
34-
interface BlobPropertyBag {
35-
type?: string;
36-
endings?: string;
37-
}
38-
3917
declare type HeaderInit = Headers|Array<string>;
4018

4119
declare function fetch(url: string, init?: RequestInit): Promise<Response>;

0 commit comments

Comments
 (0)