Blame view

types/time.d.ts 648 Bytes
1011bd41   yangdan8   1.update all d.ts...
1
  // Type definitions for iview 3.3.1
454cdd17   yangd   完成新版本3.0.0的iview全...
2
3
4
  // Project: https://github.com/iview/iview
  // Definitions by: yangdan
  // Definitions: https://github.com/yangdan8/iview.git
3f839e19   CherishIt   type(time): remov...
5
  import Vue from 'vue';
454cdd17   yangd   完成新版本3.0.0的iview全...
6
  
4a2af4f5   yangd   1.将class定义方式修改为in...
7
  export declare interface Time extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
    /**
     * 需要对比的时间,可以是时间戳或 Date 类型
     */
    time?: number |Date |string;
    /**
     * 类型,可选值为 relative、date 或 datetime
     * @default relative
     */
    type?: 'relative'|'date'|'datetime';
    /**
     * 自动更新的间隔,单位:秒
     * @default 60
     */
    interval?: number;
    /**
     * 填写该值,点击会定位锚点
     * @default false
     */
    hash?: string;
  }