curlconverter
Version:
convert curl commands to Python, JavaScript, Go, PHP and more
7 lines (6 loc) • 299 B
TypeScript
export declare class CCError extends Error {
}
export declare const UTF8encoder: TextEncoder;
export declare function has<T, K extends PropertyKey>(obj: T, prop: K): obj is T & Record<K, unknown>;
export declare function btoa(str: string): string;
export declare function isInt(s: string): boolean;