nativescript-plugin-firebase-updated
Version:
11 lines (9 loc) • 354 B
TypeScript
export declare class FirebaseTrace {
setValue(attribute: string, value: string): void;
getValue(attribute: string): string;
getAttributes(): { [field: string]: any };
removeAttribute(attribute: string): void;
incrementMetric(metric: string, by: number): void;
stop(): void;
}
export declare function startTrace(name: string): FirebaseTrace;