UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

30 lines (29 loc) 684 B
import { EntryPhase } from './EntryRow.js'; import { Target } from './pages/Target.js'; export interface Entry { entryId: string; phase: EntryPhase; title: string; type: string; seeded: boolean; workspace: string; root: string; level: number; filePath: string; parentDir: string; childrenDir: string; index: string; parent: string | null; i18nId: string; locale: string | null; modifiedAt: number; rowHash: string; active: boolean; main: boolean; path: string; fileHash: string; url: string; data: Record<string, any>; searchableText: string; } export declare const Entry: Target<Entry>;