UNPKG

238 BTypeScriptView Raw
1/**
2 * Optional context information and utilities for FTS functions.
3 */
4export declare class Context {
5 /** Version of the FTS handler that is invoking the function */
6 readonly version: string;
7 constructor(version: string);
8}