Skip to content

Graphorin API reference v0.1.0


Graphorin API reference / @graphorin/skills / / SupplyChainSkillSource

Type Alias: SupplyChainSkillSource

ts
type SupplyChainSkillSource = 
  | {
  kind: "folder";
  path: string;
}
  | {
  kind: "npm-package";
  packageName: string;
  version?: string;
}
  | {
  kind: "git-repo";
  ref?: string;
  url: string;
};

Defined in: packages/security/dist/supply-chain/types.d.ts:30

Source descriptor for a skill installation request.

Stable