- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
16 lines
615 B
TypeScript
16 lines
615 B
TypeScript
import { APIResource } from "../../../core/resource.js";
|
|
import { APIPromise } from "../../../core/api-promise.js";
|
|
import { RequestOptions } from "../../../internal/request-options.js";
|
|
export declare class Content extends APIResource {
|
|
/**
|
|
* Retrieve Container File Content
|
|
*/
|
|
retrieve(fileID: string, params: ContentRetrieveParams, options?: RequestOptions): APIPromise<Response>;
|
|
}
|
|
export interface ContentRetrieveParams {
|
|
container_id: string;
|
|
}
|
|
export declare namespace Content {
|
|
export { type ContentRetrieveParams as ContentRetrieveParams };
|
|
}
|
|
//# sourceMappingURL=content.d.ts.map
|