import type { InvokeId } from "../modules/CommonProtocolSpecification/InvokeId.ta.mjs"; import type { Code } from "../modules/CommonProtocolSpecification/Code.ta.mjs"; import type { ASN1Element } from "@wildboar/asn1"; /** * A abstract type to represent a directory result independently of its * serialization and transport. */ export interface Result { invokeId: InvokeId; opCode?: Code; result?: ASN1Element; } export default Result; //# sourceMappingURL=Result.d.mts.map