We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 884056b commit a9823afCopy full SHA for a9823af
jquerymobile/jquerymobile.d.ts
@@ -274,12 +274,19 @@ interface LoadPageOptions {
274
type?: string;
275
}
276
277
+interface LoaderOptions {
278
+ theme?: string;
279
+ textVisible?: boolean;
280
+ html?: string;
281
+ text?: string;
282
+}
283
+
284
interface JQueryMobile extends JQueryMobileOptions {
285
286
changePage(to: any, options?: ChangePageOptions): void;
287
initializePage(): void;
288
loadPage(url: any, options?: LoadPageOptions): void;
- loading(command: string, options? ): void;
289
+ loading(command: string, options?: LoaderOptions): void;
290
291
base;
292
silentScroll(yPos: number): void;
@@ -378,4 +385,4 @@ interface JQuery {
378
385
379
386
interface JQueryStatic {
380
387
mobile: JQueryMobile;
381
-}
388
0 commit comments