Type alias LuaFloorDivision<TLeft, TRight, TReturn>

LuaFloorDivision<TLeft, TRight, TReturn>: ((left, right) => TReturn) & LuaExtension<"FloorDivision">

Calls to functions with this type are translated to left // right. For more information see: https://typescripttolua.github.io/docs/advanced/language-extensions

Type Parameters

  • TLeft

    The type of the left-hand-side of the operation.

  • TRight

    The type of the right-hand-side of the operation.

  • TReturn

    The resulting (return) type of the operation.

Type declaration

    • (left, right): TReturn
    • Parameters

      • left: TLeft
      • right: TRight

      Returns TReturn

Generated using TypeDoc