registerFrameworkFunction
[ Function ]
function registerFrameworkFunction(
name: string,
func: (args: any[]) => any,
descriptionUrl: string = ''
): void;
Registers a function created within a function package in the framework.
Parameter
Name | Type | Description |
---|---|---|
name | The name with which the function is registered in the framework. | |
func | A reference to the function to be registered. | |
descriptionUrl |
|
Return value
Type | Description |
---|---|
void | No return value |
![]() | Available from 1.8 |