UNPKG

@cpanel/api

Version:

cPanel API JavaScript and TypeScript interface libraries. This library provides a set of classes for calling cPanel WHM API 1 and UAPI calls. The classes hide much of the complexity of these APIs behind classes the abstract the underlying variances betwee

9 lines (8 loc) 247 B
/** * Convert from a JavaScript boolean to a Perl boolean. */ export declare function fromBoolean(value: boolean): "1" | "0"; /** * Convert from a Perl boolean to a JavaScript boolean */ export declare function toBoolean(value: any): boolean;