update OHandlerStatic

This commit is contained in:
Mario Adrian
2018-02-15 16:33:58 +01:00
parent 15398d85cf
commit 5674e143e8

View File

@@ -82,16 +82,13 @@ declare module 'odata' {
}
interface OHandlerStatic {
(): OHandlerStatic;
(options?: string | Options): OHandler<{}>;
config: (config: Options) => OHandlerStatic;
isEndpoint: () => boolean;
}
interface OFn<T> extends OHandler<T> {
(): OHandlerStatic;
(options?: string | Options): OHandler<T>;
}
var o : OFn<{}>;
var o : OHandlerStatic;
export = o
}