Files
crawlab/frontend/crawlab-ui/typings/utils/dependency.d.ts

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;