Endo API documentation
    Preparing search index...

    Type Alias BundleSourceResult<T>

    BundleSourceResult: T extends "endoZipBase64"
        ? {
            endoZipBase64: string;
            endoZipBase64Sha512: string;
            moduleFormat: "endoZipBase64";
        }
        : T extends "getExport"
        | "nestedEvaluate"
            ? { moduleFormat: T; source: string; sourceMap: string }
            : T extends "endoScript" ? { moduleFormat: T; source: string } : never

    Type Parameters