- 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
7 lines
317 B
JavaScript
7 lines
317 B
JavaScript
"use strict";
|
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.sleep = void 0;
|
|
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
exports.sleep = sleep;
|
|
//# sourceMappingURL=sleep.js.map
|