/** * Applications Resource * * Manage and retrieve applications available in the system. */ import type { Application, ApplicationMetrics, EdubridgeTransportLike } from '../types'; /** * Applications resource for managing learning platforms. * * Applications represent different learning platforms or educational * software that can be integrated with Timeback. */ export declare class ApplicationsResource { private readonly transport; constructor(transport: EdubridgeTransportLike); /** * List all applications. * * @returns List of applications */ list(): Promise; /** * Get metrics for an application. * * @param applicationSourcedId - Application ID * @returns Application metrics */ getMetrics(applicationSourcedId: string): Promise; } //# sourceMappingURL=applications.d.ts.map