@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
19 lines • 636 B
text/typescript
//#region src/static-css/scan.d.ts
interface ScanAntdUsageOptions {
cwd?: string;
exclude?: RegExp[];
extensions?: string[];
roots?: string[];
}
interface AntdUsageScanResult {
/** PascalCase antd export names found in value imports */
components: string[];
importsLobeUi: boolean;
scannedFiles: number;
/** a namespace/default antd import was found — usage is not statically enumerable */
wildcard: boolean;
}
declare const scanAntdUsage: (options?: ScanAntdUsageOptions) => AntdUsageScanResult;
//#endregion
export { AntdUsageScanResult, ScanAntdUsageOptions, scanAntdUsage };
//# sourceMappingURL=scan.d.mts.map