Remove published types

This commit is contained in:
Leonid Logvinov
2018-05-29 17:10:19 -07:00
parent ae47da3801
commit 743c957918
5 changed files with 5 additions and 15 deletions

View File

@@ -1,4 +0,0 @@
declare function isMobile(): boolean;
declare module 'is-mobile' {
export = isMobile;
}

View File

@@ -1,7 +0,0 @@
declare interface XML2JSONOpts {
compact?: boolean;
spaces?: number;
}
declare module 'xml-js' {
const xml2json: (xml: string, opts: XML2JSONOpts) => string;
}