Type alias LongWithoutOverrides

LongWithoutOverrides: (new (low, high?, unsigned?) => {
    [P in Exclude<keyof Long, TimestampOverrides>]: Long[P]
})

Type declaration

    • new (low, high?, unsigned?): {
          [P in Exclude<keyof Long, TimestampOverrides>]: Long[P]
      }
    • Parameters

      • low: unknown
      • Optional high: number | boolean
        Optional
      • Optional unsigned: boolean
        Optional

      Returns {
          [P in Exclude<keyof Long, TimestampOverrides>]: Long[P]
      }

Generated using TypeDoc