TypeScriptでUNIX時間を取得したく、以下のようにすると、

var unixtime = new Date / 1000;

以下のようなコンパイルエラーになります。

error TS2113: The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.

どのように実装すれば回避できるでしょうか。