TenantAtlas/apps/platform/.pnpm-store/v10/files/97/709c316a87f129a0767364ed86ed03736caa867aee39baa3c3eb2967df2e6ed3b7fd6dfc4f82741144ee637f77612db63e8816fb913a3e02254a318b9da612
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

8 lines
416 B
Plaintext

import type { AnySQLiteSelect } from "../sqlite-core/index.js";
import { SQLiteRelationalQuery } from "../sqlite-core/query-builders/query.js";
export declare const useLiveQuery: <T extends Pick<AnySQLiteSelect, "_" | "then"> | SQLiteRelationalQuery<"sync", unknown>>(query: T, deps?: unknown[]) => {
readonly data: Awaited<T>;
readonly error: Error | undefined;
readonly updatedAt: Date | undefined;
};