UNPKG

460 BTypeScriptView Raw
1import { EntryObj } from './Entry';
2import { Config } from './commands/args';
3export declare const fromTemplates: (file: string) => string;
4export declare type EntryMap = Record<string, EntryObj>;
5export declare class Entries {
6 static writeApp(config: Config, dev?: boolean): Promise<void>;
7 all: Map<string, EntryObj>;
8 get: () => Promise<EntryMap>;
9 repoEditUrl: string | null;
10 constructor(config: Config);
11 private getMap;
12}