10 lines
413 B
TypeScript
10 lines
413 B
TypeScript
|
|
import { APIResource } from "../../core/resource.mjs";
|
||
|
|
import { APIPromise } from "../../core/api-promise.mjs";
|
||
|
|
import { RequestOptions } from "../../internal/request-options.mjs";
|
||
|
|
export declare class Content extends APIResource {
|
||
|
|
/**
|
||
|
|
* Download a skill zip bundle by its ID.
|
||
|
|
*/
|
||
|
|
retrieve(skillID: string, options?: RequestOptions): APIPromise<Response>;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=content.d.mts.map
|