Interface FunctionConstructor

    interface FunctionConstructor {
        new FunctionConstructornew (...args: string[]): Function;
        prototype: Function;
        (...args: string[]): Function;
    }
    • Parameters

      • Rest...args: string[]

      Returns Function

    Constructors

    Properties

    Constructors

    • Creates a new function.

      Parameters

      • Rest...args: string[]

        A list of arguments the function accepts.

      Returns Function

    Properties

    prototype: Function