TenantAtlas/apps/platform/.pnpm-store/v10/files/28/697944e76ebda576cda8b209bc0eccf73ff312602f601f75091fe0127c749111b898d30048bb4e820beadee30635207c9621e575385ca1b10ae6f7277d81fc
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
418 B
Plaintext

import type { AnySQLiteSelect } from "../sqlite-core/index.cjs";
import { SQLiteRelationalQuery } from "../sqlite-core/query-builders/query.cjs";
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;
};