@worldware/msg-cli
    Preparing search index...

    Interface MsgProjectFileData

    Minimal type for MsgProject-like data we read from an existing project file.

    interface MsgProjectFileData {
        loader?: unknown;
        locales?: {
            pseudoLocale?: string;
            sourceLocale?: string;
            targetLocales?: Record<string, string[]>;
        };
        project?: { name?: string; version?: number };
    }
    Index
    loader?: unknown
    locales?: {
        pseudoLocale?: string;
        sourceLocale?: string;
        targetLocales?: Record<string, string[]>;
    }
    project?: { name?: string; version?: number }