Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

View file

@ -0,0 +1,5 @@
/**
* Generated bundle index. Do not edit.
*/
/// <amd-module name="@angular/fire/compat/performance" />
export * from './public_api';

View file

@ -0,0 +1,6 @@
export declare const proxyPolyfillCompat: {
app: any;
trace: any;
instrumentationEnabled: any;
dataCollectionEnabled: any;
};

View file

@ -0,0 +1,11 @@
{
"$schema": "../../node_modules/ng-packagr/package.schema.json",
"main": "../../bundles/angular-fire-compat-performance.umd.js",
"module": "../../fesm2015/angular-fire-compat-performance.js",
"es2015": "../../fesm2015/angular-fire-compat-performance.js",
"esm2015": "../../esm2015/compat/performance/angular-fire-compat-performance.js",
"fesm2015": "../../fesm2015/angular-fire-compat-performance.js",
"typings": "angular-fire-compat-performance.d.ts",
"sideEffects": false,
"name": "@angular/fire/compat/performance"
}

View file

@ -0,0 +1,26 @@
import { InjectionToken, NgZone } from '@angular/core';
import { Observable } from 'rxjs';
import firebase from 'firebase/compat/app';
import { ɵPromiseProxy } from '@angular/fire/compat';
import { FirebaseApp } from '@angular/fire/compat';
import * as i0 from "@angular/core";
export declare const INSTRUMENTATION_ENABLED: InjectionToken<boolean>;
export declare const DATA_COLLECTION_ENABLED: InjectionToken<boolean>;
export interface AngularFirePerformance extends ɵPromiseProxy<firebase.performance.Performance> {
}
export declare class AngularFirePerformance {
private zone;
private readonly performance;
constructor(app: FirebaseApp, instrumentationEnabled: boolean | null, dataCollectionEnabled: boolean | null, zone: NgZone, platformId: Object);
static ɵfac: i0.ɵɵFactoryDeclaration<AngularFirePerformance, [null, { optional: true; }, { optional: true; }, null, null]>;
static ɵprov: i0.ɵɵInjectableDeclaration<AngularFirePerformance>;
}
export declare const traceUntil: <T = any>(name: string, test: (a: T) => boolean, options?: {
orComplete?: boolean;
}) => (source$: Observable<T>) => Observable<T>;
export declare const traceWhile: <T = any>(name: string, test: (a: T) => boolean, options?: {
orComplete?: boolean;
}) => (source$: Observable<T>) => Observable<T>;
export declare const traceUntilComplete: <T = any>(name: string) => (source$: Observable<T>) => Observable<T>;
export declare const traceUntilFirst: <T = any>(name: string) => (source$: Observable<T>) => Observable<T>;
export declare const trace: <T = any>(name: string) => (source$: Observable<T>) => Observable<T>;

View file

@ -0,0 +1,9 @@
import { AngularFirePerformance } from './performance';
import { PerformanceMonitoringService } from './performance.service';
import * as i0 from "@angular/core";
export declare class AngularFirePerformanceModule {
constructor(perf: AngularFirePerformance, _: PerformanceMonitoringService);
static ɵfac: i0.ɵɵFactoryDeclaration<AngularFirePerformanceModule, [null, { optional: true; }]>;
static ɵmod: i0.ɵɵNgModuleDeclaration<AngularFirePerformanceModule, never, never, never>;
static ɵinj: i0.ɵɵInjectorDeclaration<AngularFirePerformanceModule>;
}

View file

@ -0,0 +1,9 @@
import { ApplicationRef, OnDestroy } from '@angular/core';
import * as i0 from "@angular/core";
export declare class PerformanceMonitoringService implements OnDestroy {
private disposable;
constructor(appRef: ApplicationRef);
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceMonitoringService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<PerformanceMonitoringService>;
}

View file

@ -0,0 +1,3 @@
export * from './performance';
export * from './performance.module';
export * from './performance.service';