Skip to content

CreatePfxResult

Success-or-failure result from createPfx.

ts
type CreatePfxResult = {
  readonly ok: true;
  readonly value: PfxMaterial
} | ErrorResult<CreatePfxErrorCode, Record<never, never>, CreatePfxFailure>

Released under the MIT License.