Skip to content
1 min read · 46 words

Function: isSpooledArtifactConstructor()

ts
function isSpooledArtifactConstructor(
  value: unknown,
): value is SpooledArtifactConstructor<SpooledArtifact>;

Defined in: guards.ts:92

Returns true if value is a constructor function for @nhtio/adk!SpooledArtifact or any of its subclasses (including SpooledArtifact itself).

Parameters

ParameterType
valueunknown

Returns

value is SpooledArtifactConstructor<SpooledArtifact>