mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-26 17:49:15 +01:00
7 lines
473 B
TypeScript
7 lines
473 B
TypeScript
export declare const getRepoExternalPath: (repo: DependencyRepo) => string | undefined;
|
|
export declare const getRepoName: (repo: DependencyRepo) => string | undefined;
|
|
export declare const getEmptyDependency: () => Dependency;
|
|
export declare const getNormalizedDependencies: (dependencies?: Dependency[]) => Dependency[];
|
|
export declare const isDependencyLoading: (dep: Dependency) => boolean;
|
|
export declare const getTypeByDep: (dep: Dependency) => BasicType | undefined;
|