UNPKG

pfx-load

Version:

Validate your pfx certificate in the easier way possible

16 lines (13 loc) 287 B
export type Cert = any; export interface PfxLoad { isPasswordOrPfxInvalid?: boolean; isPfxOutdated?: boolean; willWork?: boolean; error?: Error | null validCerts?: Array<Cert>; } export interface PfxOptions { showCerts?: boolean; showError?: boolean; } export default {}