小编Paw*_*ski的帖子

Google Meet 如何显示 CPU 使用率?

我今天在我的 Chrome 中注意到了这一点。

Google Meet CPU 使用率图表

Google Meet 在其“疑难解答”面板中显示了 CPU 使用率图表。我想知道是否有一个现有的 API 或者这是一个我不知道的聪明技巧。

javascript google-chrome

12
推荐指数
1
解决办法
1292
查看次数

使用查找类型时出现 Typescript TS2322 错误

我正在绞尽脑汁为什么以下代码无法编译:

interface Circle { type: "circle"; }
interface Rectangle { type: "rectangle"; }
type Shape = Circle | Rectangle;

interface Circle { type: "circle"; }
interface Rectangle { type: "rectangle"; }
type ShapeTemplate = {
  type: Shape["type"];
};

const fromTemplate = (template: ShapeTemplate): Shape => template;
Run Code Online (Sandbox Code Playgroud)

它打破了:

TS2322: Type 'ShapeTemplate' is not assignable to type 'Shape'. Type 'ShapeTemplate' is not assignable to type 'Rectangle'. Types of property 'type' are incompatible. Type '"circle" | "rectangle"' is not assignable to type '"rectangle"'. …

typescript

4
推荐指数
1
解决办法
186
查看次数

标签 统计

google-chrome ×1

javascript ×1

typescript ×1