Skip to content

Commit d6758e5

Browse files
tslint
1 parent 77a806c commit d6758e5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/code-push-lib.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
declare module Http {
1+
declare namespace Http {
22
export const enum Verb {
33
GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS, CONNECT, PATCH
44
}
@@ -94,20 +94,20 @@ interface ILocalPackage extends IPackage {
9494
* Decomposed static side of RemotePackage.
9595
* For Class Decomposition guidelines see http://www.typescriptlang.org/Handbook#writing-dts-files-guidelines-and-specifics
9696
*/
97-
interface RemotePackage_Static {
97+
interface RemotePackageStatic {
9898
new (): IRemotePackage;
9999
}
100100

101101
/**
102102
* Decomposed static side of LocalPackage.
103103
* For Class Decomposition guidelines see http://www.typescriptlang.org/Handbook#writing-dts-files-guidelines-and-specifics
104104
*/
105-
interface LocalPackage_Static {
105+
interface LocalPackageStatic {
106106
new (): ILocalPackage;
107107
}
108108

109-
declare var RemotePackage: RemotePackage_Static;
110-
declare var LocalPackage: LocalPackage_Static;
109+
declare var RemotePackage: RemotePackageStatic;
110+
declare var LocalPackage: LocalPackageStatic;
111111

112112
/**
113113
* Defines the JSON format of the current package information file.
@@ -133,7 +133,7 @@ interface Configuration {
133133
clientUniqueId: string;
134134
deploymentKey: string;
135135
serverUrl: string;
136-
ignoreAppVersion?: boolean
136+
ignoreAppVersion?: boolean;
137137
}
138138

139139
declare class AcquisitionStatus {

0 commit comments

Comments
 (0)