/** * Log streams — build + runtime SSE. * * The SDK does not open the SSE connection; it hands back the URL + auth * token. Consumers (CLI, Console, a custom integration) wire up * `new EventSource(url, { ... })` with the returned `token` as the * `Authorization: Bearer …` header. This keeps the SDK free of * transport-specific state while still standardising how stream * handshakes look. */ import type { Client } from './client.js'; import type { LogListResult, LogStream } from './types.js'; export interface ListLogsOptions { readonly envType?: string; readonly envId?: string; readonly deploymentId?: string; readonly limit?: number; readonly orgId?: string; } export declare const stream: (client: Client, projectId: string, envType: string, options?: Pick) => LogStream; export declare const list: (client: Client, projectId: string, options?: ListLogsOptions) => Promise; //# sourceMappingURL=logs.d.ts.map