UNPKG

@baseplate-dev/core-generators

Version:

Core generators for Baseplate

16 lines 476 B
export interface PackageInfoProvider { /** * Get the name of the project. */ getPackageName(): string; /** * Get the canonical path to the root of the package. */ getPackageRoot(): string; /** * Gets the path to the src/ folder of the package. */ getPackageSrcPath(): string; } export declare const packageInfoProvider: import("@baseplate-dev/sync").ProviderType<PackageInfoProvider>; //# sourceMappingURL=project.d.ts.map