UNPKG

@scriptables/manifest

Version:

Utilities to generate, parse, and update manifest headers in Scriptable scripts.

15 lines (12 loc) 372 B
import { ScriptableManifest } from './types.js'; /** * The type definition of the Manifest object */ type Manifest = { [key: string]: any; }; /** * The normalized manifest key is camelCase, and the value is converted according to a predefined converter */ declare function normalizeManifest(manifest: Manifest): ScriptableManifest; export { normalizeManifest };