We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
上手くダックタイピングみたいなことができるといいんだけど…… 個人的に気になってるのが下記二箇所。 (どちらもrenderNotionBlock.tsx)
type richText = { type: 'text' text: { content: string link: { url: string } | null } annotations: { bold: boolean italic: boolean strikethrough: boolean underline: boolean code: boolean color: | 'default' | 'gray' | 'brown' | 'orange' | 'yellow' | 'green' | 'blue' | 'purple' | 'pink' | 'red' | 'gray_background' | 'brown_background' | 'orange_background' | 'yellow_background' | 'green_background' | 'blue_background' | 'purple_background' | 'pink_background' | 'red_background' } plain_text: string href: string | null }
↑Notionの型定義ファイルから丸コピペしている。 さすがにもっといい手があるはず
export const renderBlock = (block: blockWithChildren) => { const { type, id } = block switch (type) { case 'paragraph': return ( <p> <TextComponent richTexts={block.paragraph.text as richText[]} /> </p> ) case 'heading_1': // ……
↑ほとんどのケースがparagraphと同じくtext返すだけなのに、リテラル型が上手く扱えずにこうなった
The text was updated successfully, but these errors were encountered:
No branches or pull requests
上手くダックタイピングみたいなことができるといいんだけど……
個人的に気になってるのが下記二箇所。
(どちらもrenderNotionBlock.tsx)
↑Notionの型定義ファイルから丸コピペしている。
さすがにもっといい手があるはず
↑ほとんどのケースがparagraphと同じくtext返すだけなのに、リテラル型が上手く扱えずにこうなった
The text was updated successfully, but these errors were encountered: