mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-04 12:31:50 +08:00
13 lines
380 B
TypeScript
13 lines
380 B
TypeScript
/// <reference types="jquery"/>
|
|
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(); |