UNPKG

516 BTypeScriptView Raw
1import { DeserializeWireBaseOptions } from '../Serializable';
2import { InvocationResultError } from './InvocationResultError';
3import { InvocationResultSuccess } from './InvocationResultSuccess';
4export declare type InvocationResult = InvocationResultSuccess | InvocationResultError;
5export declare const deserializeInvocationResultWireBase: (options: DeserializeWireBaseOptions) => InvocationResult;
6export declare const deserializeInvocationResultWire: import("../Serializable").DeserializeWire<InvocationResult>;