node-ovh-ts
Version:
OVH API wrapper library for TypeScript
15 lines (12 loc) • 349 B
TypeScript
import { SecretSecret } from '../models/SecretSecret.js';
import OVHBase from '../ovh.js';
import '../endpoints.js';
declare class SecretHandler {
ovh: OVHBase;
constructor(ovh: OVHBase);
/** Retrieve a secret sent by email */
postRetrieve: (body: {
id: string;
}) => Promise<SecretSecret>;
}
export { SecretHandler };