/** * A utility function that returns the current number of seconds since zero epoch. (midnight UTC, 1st Jan 1970) * * This function is not implemented by the HTML5 performance API since the resolution is not required * and is it slower in practise than other methods: http://jsperf.com/current-date */ declare var epoch: () => number; export = epoch;