feat(SW-322): move type to blocks folder

This commit is contained in:
Fredrik Thorsson
2024-10-07 16:26:40 +02:00
parent d4f86bd02e
commit f806f6176b
6 changed files with 5 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { Shortcut } from "@/types/trpc/routers/contentstack/blocks"
export interface ShortcutsProps extends Shortcut {
firstItem?: boolean
}
export type ShortcutsListProps = {
linkList: ShortcutsProps["shortcuts"]
}