Conexio amb la api
This commit is contained in:
parent
207c0ba819
commit
b12369cb47
48513 changed files with 7391639 additions and 7 deletions
8
node_modules/@ionic/angular/util/ionic-router-reuse-strategy.d.ts
generated
vendored
Executable file
8
node_modules/@ionic/angular/util/ionic-router-reuse-strategy.d.ts
generated
vendored
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
import { ActivatedRouteSnapshot, DetachedRouteHandle, RouteReuseStrategy } from '@angular/router';
|
||||
export declare class IonicRouteStrategy implements RouteReuseStrategy {
|
||||
shouldDetach(_route: ActivatedRouteSnapshot): boolean;
|
||||
shouldAttach(_route: ActivatedRouteSnapshot): boolean;
|
||||
store(_route: ActivatedRouteSnapshot, _detachedTree: DetachedRouteHandle): void;
|
||||
retrieve(_route: ActivatedRouteSnapshot): DetachedRouteHandle | null;
|
||||
shouldReuseRoute(future: ActivatedRouteSnapshot, curr: ActivatedRouteSnapshot): boolean;
|
||||
}
|
||||
22
node_modules/@ionic/angular/util/overlay.d.ts
generated
vendored
Executable file
22
node_modules/@ionic/angular/util/overlay.d.ts
generated
vendored
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
interface ControllerShape<Opts, HTMLElm> {
|
||||
create(options: Opts): Promise<HTMLElm>;
|
||||
dismiss(data?: any, role?: string, id?: string): Promise<boolean>;
|
||||
getTop(): Promise<HTMLElm | undefined>;
|
||||
}
|
||||
export declare class OverlayBaseController<Opts, Overlay> implements ControllerShape<Opts, Overlay> {
|
||||
private ctrl;
|
||||
constructor(ctrl: ControllerShape<Opts, Overlay>);
|
||||
/**
|
||||
* Creates a new overlay
|
||||
*/
|
||||
create(opts?: Opts): Promise<Overlay>;
|
||||
/**
|
||||
* When `id` is not provided, it dismisses the top overlay.
|
||||
*/
|
||||
dismiss(data?: any, role?: string, id?: string): Promise<boolean>;
|
||||
/**
|
||||
* Returns the top overlay.
|
||||
*/
|
||||
getTop(): Promise<Overlay>;
|
||||
}
|
||||
export {};
|
||||
1
node_modules/@ionic/angular/util/util.d.ts
generated
vendored
Executable file
1
node_modules/@ionic/angular/util/util.d.ts
generated
vendored
Executable file
|
|
@ -0,0 +1 @@
|
|||
export declare const raf: (h: any) => any;
|
||||
Loading…
Add table
Add a link
Reference in a new issue