alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
30 lines (29 loc) • 684 B
TypeScript
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>;