mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-10 08:12:55 +00:00
Consolidate shared plugin runtime MIME/schema helpers, preserve canonical runtime behavior, and guard QQBot STT fetches.
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
// Narrow media MIME helper surface for plugins that do not need the full media runtime.
|
|
|
|
export {
|
|
detectMime,
|
|
extensionForMime,
|
|
getFileExtension,
|
|
mimeTypeFromFilePath,
|
|
normalizeMimeType,
|
|
} from "../media/mime.js";
|
|
export { mediaKindFromMime, type MediaKind } from "../media/constants.js";
|