mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
import * as moment from 'moment';
|
|
|
|
$('#test1').livestamp(new Date('June 18, 1987'));
|
|
$('#test2').livestamp(1362282933);
|
|
$('#test3').livestamp('destroy');
|
|
$('#test4').livestamp(moment(new Date('June 18, 1987')));
|
|
|
|
$.livestamp.update();
|
|
$.livestamp.pause();
|
|
$.livestamp.resume();
|
|
$.livestamp.interval(340);
|
|
var result:number = $.livestamp.interval(); |