Files
sage-home/types/line.ts

9 lines
151 B
TypeScript
Raw Normal View History

2026-01-24 16:54:44 +08:00
export type Line = {
locale: string;
title: string;
desc: string;
cover: string;
images: string[];
properties?: string[];
slug: string;
}