import { ParameterType } from './ParameterType'; import { Transferable } from './Transferable'; export interface RemoteMethodOptions { paramTypes?: ParameterType[]; transferables?: (this: void, ...args: any[]) => Transferable[]; } export declare type GetRemoteMethodOptions = RemoteMethodOptions & { methodName: string; };