@launchql/migrate
Version:
PostgreSQL Migration Tools
17 lines (16 loc) • 420 B
TypeScript
interface DependencyGraph {
[key: string]: string[];
}
interface DependencyResult {
external: string[];
resolved: string[];
deps: DependencyGraph;
}
export declare const getDeps: (packageDir: string, extname: string) => DependencyResult;
export declare const extDeps: (name: string, modules: Record<string, {
requires: string[];
}>) => {
external: string[];
resolved: string[];
};
export {};