跳至主要內容
函数作为interface参数定义

函数作为interface参数定义

无参数无返回

Example 1:

Function that does not take arguments and does not return a value:

interface MyClassProps {
    someProp: string;
    onChange(): any;
}
class MyClass extends React.Component<MyClassProps, MyClassState> ...

Mr.He小于 1 分钟TypeScriptinterface
Utility Types

Utility Types

Partial

传入属性变为可选项

type Partial<T> = {[P in keyof T]?: T[P]}

Mr.He小于 1 分钟TypeScriptinterface
泛型

泛型

泛型语法简介

泛型的语法为 <T>,其中 T 表示传入的类型

注意:通常使用单个字母来命名泛型类型。这不是语法规则,我们也可以像 TypeScript 中的任何其他类型一样命名泛型,但这种约定有助于向阅读代码的人传达泛型类型不需要特定类型。

function identity<T>(arg: T): T {
  return arg;
}

Mr.He大约 1 分钟TypeScript泛型
类类型

类类型

类定义

// 类声明
class ClassName {
  // ...
}

// 类表达式
const Circle = class {
  // ...
};

Mr.He大约 3 分钟TypeScriptclass