/** * Data structure for repo items */ export declare type RepoItemType = RepoItems['type']; export declare type RepoItems = RepoImpItem | RepoRefItem | RepoDocItem; export interface MMELRepo { ns: string; type: RepoItemType; } export declare type RepoIndex = Record; export declare type RepoImpItem = RepoBase & { type: 'Imp'; }; export declare type RepoRefItem = RepoBase & { type: 'Ref'; }; export declare type RepoDocItem = RepoBase & { type: 'Doc'; }; interface RepoBase { namespace: string; shortname: string; title: string; date: Date; } /** * It is like an index of the file system, to identify and keep track of objects in Paneron */ export declare const repoIndexPath = "/index.json"; export {}; //# sourceMappingURL=repo.d.ts.map