tanam
Version:
Pluggable CMS for Firebase
21 lines (20 loc) • 474 B
TypeScript
export declare type DocumentStatus = 'published' | 'unpublished' | 'scheduled';
export interface Document {
id: string;
documentType: string;
data: {
[key: string]: any;
};
title: string;
url: string;
revision: number | any;
status: DocumentStatus;
tags: string[];
standalone: boolean;
dependencies: string[] | any;
rendered?: any;
published?: any;
canonicalUrl?: string;
updated: any;
created: any;
}