Skip to content

Commit

Permalink
Merge branch 'master' of github.com:imteekay/tk
Browse files Browse the repository at this point in the history
  • Loading branch information
imteekay committed Aug 2, 2023
2 parents e948e14 + e04e17b commit 9bb0354
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Home/components/Writings/postsList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ type Post = {
};

export const postsList: Post[] = [
{
datetime: '2023-07-31',
link: '/allow-var-statements-to-declare-multiple-symbols-in-the-typescript-compiler',
title:
'Allow var statements to declare multiple symbols in the TypeScript compiler',
},
{
datetime: '2023-07-23',
link: '/building-emptystatement-and-semicolon-as-statement-ender-for-the-typescript-compiler',
Expand Down
5 changes: 5 additions & 0 deletions content/series/the-typescript-compiler/en/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ This is live document and will be updated everytime I learn new things.
title="Building EmptyStatement and Semicolon as a statement ender for the TypeScript compiler"
url="/building-emptystatement-and-semicolon-as-statement-ender-for-the-typescript-compiler"
/>
<PostAndDate
date="2023-07-31"
title="Allow var statements to declare multiple symbols in the TypeScript compiler"
url="/allow-var-statements-to-declare-multiple-symbols-in-the-typescript-compiler"
/>
</ul>

---
Expand Down
5 changes: 5 additions & 0 deletions content/tags/programming-language-design/en/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
## 2023

<ul>
<PostAndDate
date="2023-07-31"
title="Allow var statements to declare multiple symbols in the TypeScript compiler"
url="/allow-var-statements-to-declare-multiple-symbols-in-the-typescript-compiler"
/>
<PostAndDate
date="2023-07-23"
title="Building EmptyStatement and Semicolon as a statement ender for the TypeScript compiler"
Expand Down
5 changes: 5 additions & 0 deletions content/tags/typescript/en/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
## 2023

<ul>
<PostAndDate
date="2023-07-31"
title="Allow var statements to declare multiple symbols in the TypeScript compiler"
url="/allow-var-statements-to-declare-multiple-symbols-in-the-typescript-compiler"
/>
<PostAndDate
date="2023-07-23"
title="Building EmptyStatement and Semicolon as a statement ender for the TypeScript compiler"
Expand Down

0 comments on commit 9bb0354

Please sign in to comment.