上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 466 下一页
摘要: import { Equal, Expect } from '../helpers/type-utils'; export function makeEventHandlers< T extends { [Key in keyof T]: (key: Key) => void } >(obj: T) 阅读全文
posted @ 2023-02-24 15:02 Zhentiw 阅读(16) 评论(0) 推荐(0) 编辑
摘要: So we have the configObj look like this: export const configObj = { routes: ["/", "/about", "/contact"], fetchers: { // @ts-expect-error "/does-not-ex 阅读全文
posted @ 2023-02-24 14:58 Zhentiw 阅读(18) 评论(0) 推荐(0) 编辑
摘要: From ts-toolbelt /** * Explain to TS which function parameter has priority for generic inference * @param A to de-prioritize * @returns `A` * @example 阅读全文
posted @ 2023-02-23 16:01 Zhentiw 阅读(84) 评论(0) 推荐(0) 编辑
摘要: import { getAnimatingState } from "fake-animation-lib"; import { Equal, Expect } from "../helpers/type-utils"; const animatingState = getAnimatingStat 阅读全文
posted @ 2023-02-23 15:12 Zhentiw 阅读(188) 评论(0) 推荐(0) 编辑
摘要: import React from 'react'; declare global { namespace JSX { interface IntrinsicElements { 'custom-element': { children?: React.ReactNode; title?: stri 阅读全文
posted @ 2023-02-22 15:38 Zhentiw 阅读(44) 评论(0) 推荐(0) 编辑
摘要: import { Equal, Expect } from '../helpers/type-utils'; import { F } from 'ts-toolbelt'; interface Fruit { name: string; price: number; } export const 阅读全文
posted @ 2023-02-22 15:17 Zhentiw 阅读(12) 评论(0) 推荐(0) 编辑
摘要: In Javascript, if you are using Object to store key-valeu pairs while you will be adding and deleting keys frequently, then you should use Map instead 阅读全文
posted @ 2023-02-21 16:08 Zhentiw 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Promise.all: Problem: let's say we have two promises, P1, P2, P1 reject in 1s, and P2 reject in 3s. What will happen in catch block? It only able to c 阅读全文
posted @ 2023-02-20 15:07 Zhentiw 阅读(17) 评论(0) 推荐(0) 编辑
摘要: import { createMachine } from "@zag-js/core"; type MachineState = { value: "idle" | "focused"; }; type MachineContext = { value: string[]; focusedInde 阅读全文
posted @ 2023-02-19 03:25 Zhentiw 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Idea is put component props inside hook, and return from hook, that's way to keep component clean and simple Hook: import { MachineOptions } from "./m 阅读全文
posted @ 2023-02-19 03:23 Zhentiw 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 466 下一页