hik-map
Version:
- 提炼自浙江海康智联科技有限公司中后台产品的交互语言和视觉风格。 - 开箱即用的高质量 Vue 组件。
16 lines (12 loc) • 350 B
TypeScript
declare interface Window {
AMap: any;
initAMap: any;
}
declare type Nullable<T> = T | null;
declare type Recordable<T = any> = Record<string, T>;
declare interface Person {
name: string;
age: number;
}
declare type TimeoutHandle = ReturnType<typeof setTimeout>;
declare type IntervalHandle = ReturnType<typeof setInterval>;