UNPKG

@o3r/schematics

Version:

Schematics module of the Otter framework

27 lines 678 B
/** * Get all environment information * Could be useful for debugging issue */ export declare const getEnvironmentInfo: () => { os: { architecture: string; platform: NodeJS.Platform; version: string; }; node: { version: string | null; }; packageManager: { name: import("./package-manager-runner").SupportedPackageManagers; version: string | undefined; }; otter: { version: string | undefined; }; }; /** * Stringify the result of `getEnvironmentInfo` * @see getEnvironmentInfo */ export declare const getEnvironmentInfoStringify: () => string; //# sourceMappingURL=environment.d.ts.map