Skip to content

Files

Latest commit

 

History

History
29 lines (23 loc) · 668 Bytes

api-report.md

File metadata and controls

29 lines (23 loc) · 668 Bytes

API Report File for "@backstage/cli-common"

Do not edit this file. It is a report generated by API Extractor.

// @public
export const BACKSTAGE_JSON = 'backstage.json';

// @public
export function findPaths(searchDir: string): Paths;

// @public
export function isChildPath(base: string, path: string): boolean;

// @public
export type Paths = {
  ownDir: string;
  ownRoot: string;
  targetDir: string;
  targetRoot: string;
  resolveOwn: ResolveFunc;
  resolveOwnRoot: ResolveFunc;
  resolveTarget: ResolveFunc;
  resolveTargetRoot: ResolveFunc;
};

// @public
export type ResolveFunc = (...paths: string[]) => string;