We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8050faa commit c55bcc6Copy full SHA for c55bcc6
1 file changed
packages/node/src/alphalib/types/assemblyStatus.ts
@@ -801,13 +801,6 @@ export function isAssemblyTerminal(assembly: AssemblyStatus | undefined | null):
801
return isAssemblyTerminalOk(assembly) || isAssemblyTerminalError(assembly)
802
}
803
804
-/**
805
- * Returns true if the assembly finished successfully.
806
- */
807
-export function isAssemblyCompleted(assembly: AssemblyStatus | undefined | null): boolean {
808
- return getOk(assembly) === 'ASSEMBLY_COMPLETED'
809
-}
810
-
811
/**
812
* This type and these functions below are compatibility helpers for
813
* working with partial assembly status objects during the transition
0 commit comments