diff --git a/CONTRIBUTORS.svg b/CONTRIBUTORS.svg
index 94128974..f7345966 100644
--- a/CONTRIBUTORS.svg
+++ b/CONTRIBUTORS.svg
@@ -14,23 +14,21 @@
包含最重要基础、泛型、方法、class 等 TypeScript 强类型编程语言语法的快速参考备忘单。初学者的完整快速参考。
TypeScript 是具有类型语法的 JavaScript。Interface 是为了匹配它们的运行时行为而构建的。
type Capitalize<T extends string> = T extends `${infer U}${infer V}`
+ ? `${Uppercase<U>}${V}`
+ : T
+type capitalized = Capitalize<"hello world"> // Hello World
+
+extends
)type SomeBigInt = "100" extends `${infer U extends bigint}` ? U : never;
+// 100n
+
+interface Point {
x: number;
y: number;