@ansvar/singapore-law-mcp
Version:
Complete Singapore law database — 523 Acts, 28K+ provisions from Singapore Statutes Online (sso.agc.gov.sg) with full-text search, definitions, and citation support
20 lines • 695 B
TypeScript
/**
* check_currency — Check whether a Singapore statute is currently in force.
*/
import type Database from '@ansvar/mcp-sqlite';
import { type ToolResponse } from '../utils/metadata.js';
export interface CheckCurrencyInput {
document_id: string;
provision_ref?: string;
as_of_date?: string;
}
export interface CheckCurrencyResult {
document_id: string;
title: string;
status: string;
issued_date: string | null;
in_force_date: string | null;
warnings: string[];
}
export declare function checkCurrency(db: InstanceType<typeof Database>, input: CheckCurrencyInput): Promise<ToolResponse<CheckCurrencyResult>>;
//# sourceMappingURL=check-currency.d.ts.map