typescript 返回对象的酷技巧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 返回对象的酷技巧相关的知识,希望对你有一定的参考价值。

export const useModal = () => {
  const [isShowing, setIsShowing] = useState(false);
  // instead function declaration (or expression)
  function toggle() {
    setIsShowing(!isShowing);
  }


  return {
    isShowing,
    toggle: () =>  setIsShowing(!isShowing), // we can move it to return, it's looks nicer
  };
};

以上是关于typescript 返回对象的酷技巧的主要内容,如果未能解决你的问题,请参考以下文章

TypeScript 异步代码类型技巧

使用 TypeScript 函数返回 JSON 对象

Typescript 无法检查函数返回类型的嵌套对象

Typescript - 如果我想返回对象,函数返回类型

TypeScript 函数箭头表达式返回对象

typescript 函数返回一个对象,该对象的键是输入对象的值