UNPKG

@reliverse/rse

Version:

@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power

22 lines (21 loc) 523 B
export interface FileMetadata { updatedAt?: string; updatedHash?: string; } export interface TemplatesFileContent { content: string | Record<string, unknown>; type: "text" | "json" | "binary"; hasError?: boolean; error?: string; jsonComments?: Record<number, string>; binaryHash?: string; metadata?: FileMetadata; } export interface Template { name: string; description: string; config: { files: Record<string, TemplatesFileContent>; }; updatedAt?: string; }