上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 496 下一页
摘要: In this exercise we have an interface MyComplexInterface which is acting as a type helper. The interface takes arguments for Event, Context, Name, and 阅读全文
posted @ 2022-12-12 15:08 Zhentiw 阅读(35) 评论(0) 推荐(0)
摘要: import { Equal, Expect } from "../helpers/type-utils"; type GetPropValue< T extends Record<PropertyKey, any>, P extends keyof T = "data" > = T extends 阅读全文
posted @ 2022-12-11 22:33 Zhentiw 阅读(45) 评论(0) 推荐(0)
摘要: type NonEmptyArray<T> = [T, ...Array<T>]; export const makeEnum = (values: NonEmptyArray<string>) => {}; makeEnum(["a"]); makeEnum(["a", "b", "c"]); / 阅读全文
posted @ 2022-12-11 22:16 Zhentiw 阅读(19) 评论(0) 推荐(0)
摘要: export type Maybe<T extends {}> = T | null | undefined; type tests = [ // @ts-expect-error Maybe<null>, // @ts-expect-error Maybe<undefined>, Maybe<st 阅读全文
posted @ 2022-12-11 22:11 Zhentiw 阅读(23) 评论(0) 推荐(0)
摘要: import { Equal, Expect } from "../helpers/type-utils"; type Maybe<T> = T | null | undefined; type tests = [ Expect<Equal<Maybe<string>, string | null 阅读全文
posted @ 2022-12-11 22:03 Zhentiw 阅读(19) 评论(0) 推荐(0)
摘要: import { Equal, Expect } from "../helpers/type-utils"; type Identity<T> = T; type tests = [ Expect<Equal<Identity<1>, 1>>, Expect<Equal<Identity<"1">, 阅读全文
posted @ 2022-12-11 22:01 Zhentiw 阅读(34) 评论(0) 推荐(0)
摘要: Let's say we have type TemplateLiteralKey = `${"user" | "post" | "comment"}${"Id" | "Name"}`; We want to make a type type ObjectOfKeys = unknown; In o 阅读全文
posted @ 2022-12-11 21:57 Zhentiw 阅读(35) 评论(0) 推荐(0)
摘要: Here we have a Sandwich type that's currently assigned to unknown We also have a couple of union types, BreadType and Filling, that have several optio 阅读全文
posted @ 2022-12-11 21:46 Zhentiw 阅读(39) 评论(0) 推荐(0)
摘要: Let's say we have an object as const: const frontendToBackendEnumMap = { singleModule: "SINGLE_MODULE", multiModule: "MULTI_MODULE", sharedModule: "SH 阅读全文
posted @ 2022-12-11 20:37 Zhentiw 阅读(31) 评论(0) 推荐(0)
摘要: Let's say we have a const of object: export const programModeEnumMap = { GROUP: "group", ANNOUNCEMENT: "announcement", ONE_ON_ONE: "1on1", SELF_DIRECT 阅读全文
posted @ 2022-12-11 20:35 Zhentiw 阅读(20) 评论(0) 推荐(0)
上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 496 下一页