Files
openclaw/src/plugin-sdk/media-mime.ts
Peter Steinberger 6a4069dead fix: share plugin runtime helpers
Consolidate shared plugin runtime MIME/schema helpers, preserve canonical runtime behavior, and guard QQBot STT fetches.
2026-05-08 00:28:43 +01:00

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";