Fix astro check errors on strict typescript, issue #293

This commit is contained in:
prototypa
2023-12-02 09:09:13 -05:00
parent cf40b9d093
commit 788acd9321
7 changed files with 42 additions and 26 deletions

View File

@@ -4,8 +4,8 @@ import { getPermalink } from '~/utils/permalinks';
import Button from '~/components/ui/Button.astro';
export interface Props {
prevUrl: string;
nextUrl: string;
prevUrl?: string;
nextUrl?: string;
prevText?: string;
nextText?: string;
}