import { EmberTypedValue } from '../types/types.js'; export { Invocation, InvocationImpl }; /** * Part of a consumer's command that requests the invocation of the parent function * by a provider. */ interface Invocation { /** Identifier generated by the consumer and used to link invocations to their * invocation results. */ id?: number; /** Values of the arguments associated with the funtion. */ args: Array; } declare class InvocationImpl implements Invocation { id: number | undefined; args: Array; constructor(id: number | undefined, args: Array); } //# sourceMappingURL=Invocation.d.ts.map