鱼C论坛

 找回密码
 立即注册
查看: 1548|回复: 1

typescript-export代码问题;别人的源码看不懂?请大佬解惑

[复制链接]
发表于 2022-6-3 16:25:48 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这是个箭头函数吗?()还可以指定类别!
(): ServerState => {
export const defaultState = (): ServerState => {
  return {
    klippy_retries: 0, // how many times have we attempted to reconnect to klippy.
    info: {
      failed_components: [],
      klippy_connected: false, // indicates if klippy is disconnected vs shutdown.
      klippy_state: '',
      components: [],
      registered_directories: [],
      warnings: []
    },
    system_info: null,
    config: {
      authorization: {
        enabled: true
      },
      server: {}
    },
    moonraker_stats: [],
    throttled_state: {
      bits: 0,
      flags: []
    },
    cpu_temp: null
  }
}

这两个名称分别代表什么内容?
interface ServerState
export interface ServerState {
  klippy_retries: number;
  info: ServerInfo;
  system_info: SystemInfo | null;
  config: ServerConfig;
  moonraker_stats: ServerSystemStat[];
  throttled_state: ServerThrottledState | null;
  cpu_temp: number | null;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-6-5 11:08:46 | 显示全部楼层
第一个指定函数返回值类型  没有返回值要写void

第二个定义类型
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 16:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表