aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-30 08:10:19 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-06-01 01:20:35 +0800
commit743c957918be109defc96b5243cf82d5c2542b39 (patch)
treea8c20d140795ddb03aadadd6e15b368623263243 /packages/typescript-typings
parentae47da3801634a17eb25e658272f60528cc06ead (diff)
downloaddexon-0x-contracts-743c957918be109defc96b5243cf82d5c2542b39.tar
dexon-0x-contracts-743c957918be109defc96b5243cf82d5c2542b39.tar.gz
dexon-0x-contracts-743c957918be109defc96b5243cf82d5c2542b39.tar.bz2
dexon-0x-contracts-743c957918be109defc96b5243cf82d5c2542b39.tar.lz
dexon-0x-contracts-743c957918be109defc96b5243cf82d5c2542b39.tar.xz
dexon-0x-contracts-743c957918be109defc96b5243cf82d5c2542b39.tar.zst
dexon-0x-contracts-743c957918be109defc96b5243cf82d5c2542b39.zip
Remove published types
Diffstat (limited to 'packages/typescript-typings')
-rw-r--r--packages/typescript-typings/types/is-mobile/index.d.ts4
-rw-r--r--packages/typescript-typings/types/xml-js/index.d.ts7
2 files changed, 0 insertions, 11 deletions
diff --git a/packages/typescript-typings/types/is-mobile/index.d.ts b/packages/typescript-typings/types/is-mobile/index.d.ts
deleted file mode 100644
index 0b3b57854..000000000
--- a/packages/typescript-typings/types/is-mobile/index.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-declare function isMobile(): boolean;
-declare module 'is-mobile' {
- export = isMobile;
-}
diff --git a/packages/typescript-typings/types/xml-js/index.d.ts b/packages/typescript-typings/types/xml-js/index.d.ts
deleted file mode 100644
index 8e4873aeb..000000000
--- a/packages/typescript-typings/types/xml-js/index.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-declare interface XML2JSONOpts {
- compact?: boolean;
- spaces?: number;
-}
-declare module 'xml-js' {
- const xml2json: (xml: string, opts: XML2JSONOpts) => string;
-}