node-opa
    Preparing search index...

    Type Alias CompileAPI

    type CompileAPI = {
        filter(
            path: string,
            req: CompileFilterRequest,
            accept: string,
        ): Promise<CompileFilterResponse>;
        partialEval(
            req: PartialEvalRequest,
            pretty?: boolean,
            explain?: "notes" | "fails" | "full" | "debug",
            metrics?: boolean,
            instrument?: boolean,
        ): Promise<PartialEvalResponse>;
    }
    Index

    Methods