mirror of
https://github.com/certd/certd.git
synced 2026-04-14 20:40:53 +08:00
13 lines
307 B
TypeScript
13 lines
307 B
TypeScript
import { HuaweiAccess } from "../access/index.js";
|
|
export type ApiRequestOptions = {
|
|
method: string;
|
|
url: string;
|
|
headers?: any;
|
|
data?: any;
|
|
};
|
|
export declare class HuaweiYunClient {
|
|
access: HuaweiAccess;
|
|
constructor(access: HuaweiAccess);
|
|
request(options: ApiRequestOptions): Promise<any>;
|
|
}
|