Blame view

types/time.ts 655 Bytes
414730dd   yangd   完成d.ts定义的优化
1
  // Type definitions for iview 3.0.1
454cdd17   yangd   完成新版本3.0.0的iview全...
2
3
4
5
6
  // Project: https://github.com/iview/iview
  // Definitions by: yangdan
  // Definitions: https://github.com/yangdan8/iview.git
  import Vue, { VNode } from "vue";
  
414730dd   yangd   完成d.ts定义的优化
7
  export declare class 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;
  }