diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-16 19:30:32 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-16 19:30:32 +0100 |
| commit | a8e8fc73498e85c0cc1692b7330aeb3567f4a1e6 (patch) | |
| tree | 02e92ea4d892c1128930327bc56c5123009bb365 /src/ts/types/cover.ts | |
| parent | 9a81ce60575403d5d3fc489f9b51d85e7108344b (diff) | |
chore: display year between blog posts
Diffstat (limited to 'src/ts/types/cover.ts')
| -rw-r--r-- | src/ts/types/cover.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ts/types/cover.ts b/src/ts/types/cover.ts index 165a26f..2a565ef 100644 --- a/src/ts/types/cover.ts +++ b/src/ts/types/cover.ts @@ -2,8 +2,8 @@ export type Cover = { altText: string; sourceUrl: string; title: string; -}; +} | null; export type CoverResponse = { node: Cover; -}; +} | null; |
