mirror of https://github.com/openclaw/openclaw.git
15 lines
434 B
TypeScript
15 lines
434 B
TypeScript
export type BundledExtensionSourceClassification = {
|
|
normalizedPath: string;
|
|
isCodeFile: boolean;
|
|
isRuntimeApiBarrel: boolean;
|
|
isPublicApiBarrel: boolean;
|
|
isTestLike: boolean;
|
|
isInfraArtifact: boolean;
|
|
isProductionSource: boolean;
|
|
};
|
|
|
|
export function normalizeExtensionSourcePath(filePath: string): string;
|
|
export function classifyBundledExtensionSourcePath(
|
|
filePath: string,
|
|
): BundledExtensionSourceClassification;
|