pfx-load
Version:
Validate your pfx certificate in the easier way possible
15 lines (14 loc) • 343 B
TypeScript
export declare 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;
}
declare const _default: {};
export default _default;