import * as p_di from "../../../interface/data.js"; import { type Query_Result } from "../../../interface/__internal/query/Query_Result.js"; /** * this function contains the body in which the async value or error is executed * after the execution, either the on_result or on_error callback will be called * @param on_result the callback to call when a value is produced * @param on_error the callback to call when an error is produced */ type Executer = (on_result: ($: Output) => undefined, on_error: ($: Error) => undefined) => undefined; export default function (executer: Executer): Query_Result; export {};