@tricoteuses/senat
Version:
Handle French Sénat's open data
14 lines (13 loc) • 471 B
TypeScript
import { InferResult } from "kysely";
export type ScrutinResult = InferResult<typeof findAllScrutinsQuery>[0];
declare const findAllScrutinsQuery: import("kysely").SelectQueryBuilder<{
[x: string]: any;
[x: number]: any;
[x: symbol]: any;
}, "date_seance" | "lecass" | "lecture" | "loi" | "scr" | "typlec", {
[x: string]: any;
}>;
export declare function findAllScrutins(fromSession?: number): AsyncIterableIterator<{
[x: string]: any;
}>;
export {};