import * as client from '@keneanung/iron-realms-nexus-typings'; /** * Class for a nexus function action. */ export declare class FunctionAction implements client.FunctionAction { action: 'function'; fn: string; /** * Constructs a new complete function action object from a partial one. * @param {Partial} partialFunction A partial function action object. */ constructor(partialFunction: Partial); }