Conexio amb la api

This commit is contained in:
janmaroto 2022-02-09 18:30:03 +01:00
commit b12369cb47
48513 changed files with 7391639 additions and 7 deletions

View 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
View 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
View file

@ -0,0 +1 @@
export declare const raf: (h: any) => any;