上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 476 下一页
摘要: Value Objects are another pattern in Domain-driven Design that provide more structure around what you can and cannot do with a type. In TypeScript we 阅读全文
posted @ 2024-07-29 14:36 Zhentiw 阅读(5) 评论(0) 推荐(0) 编辑
摘要: TypeScript will sometimes display the original Primitive Type rather than the Type Alias that you've set. By appending & {} to your Type Alias, you ca 阅读全文
posted @ 2024-07-25 22:26 Zhentiw 阅读(6) 评论(0) 推荐(0) 编辑
摘要: vim cheat sheet Keep this handy as you experiment with vim: http://www.fprintf.net/vimCheatSheet.html Here is another guide that covers the commands i 阅读全文
posted @ 2024-07-12 14:42 Zhentiw 阅读(3) 评论(0) 推荐(0) 编辑
摘要: We start with three interface types: User, Organisation, and Product. These types share common properties: id, name, and imageId, but each also posses 阅读全文
posted @ 2024-07-11 14:50 Zhentiw 阅读(6) 评论(0) 推荐(0) 编辑
摘要: One common question is whether to use type or interface in TypeScript. To clarify the difference, type can represent anything, including objects, wher 阅读全文
posted @ 2024-07-11 14:30 Zhentiw 阅读(7) 评论(0) 推荐(0) 编辑
摘要: You don't really need to apply a really complex regex for one validation, instead you can combine multi regex together to fulfilll the task. const reg 阅读全文
posted @ 2024-07-08 14:57 Zhentiw 阅读(5) 评论(0) 推荐(0) 编辑
摘要: You cannot assign anything to never, except for never itself. // red squiggly lines under everything in parens fn("hello"); fn(42); fn(true); fn({}); 阅读全文
posted @ 2024-07-08 14:36 Zhentiw 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_46.md#add-all-missing-imports-source-action 阅读全文
posted @ 2024-07-06 17:08 Zhentiw 阅读(2) 评论(0) 推荐(0) 编辑
摘要: declare const tag: unique symbol; export type EmptyObject = { [tag]?: never }; // Record<PropertyKey, never> const acceptOnlyEmptyObject = (input: Emp 阅读全文
posted @ 2024-07-04 02:23 Zhentiw 阅读(10) 评论(0) 推荐(0) 编辑
摘要: const acceptAnythingExceptNullOrUndefined = <T>(input: {}) => {}; acceptAnythingExceptNullOrUndefined('hello'); acceptAnythingExceptNullOrUndefined(42 阅读全文
posted @ 2024-07-04 02:14 Zhentiw 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 476 下一页