UNPKG

scriptable-testlab

Version:

A lightweight, efficient tool designed to manage and update scripts for Scriptable.

68 lines (60 loc) 1.18 kB
// Mock implementations by category export * from './contact'; export * from './data'; export * from './media'; export * from './security'; export * from './services'; export * from './system'; export * from './ui'; /** * User Interface Components * - Base UI components (alert, color, font, etc.) * - Table components * - Widget components */ export * from './ui'; /** * Data Processing * - Data manipulation * - Date formatting * - Path handling * - XML parsing */ export * from './data'; /** * System Features * - Core system functionality * - File system operations * - Input/Output handling * - System utilities */ export * from './system'; /** * System Services * - Notifications * - Quick Look * - Safari integration * - Share Sheet * - URL Scheme handling * - Calendar operations * - Event management */ export * from './services'; /** * Network Operations * - HTTP requests * - Network utilities */ export * from './network'; /** * Media Handling * - Image processing * - Photo library access */ export * from './media'; /** * Contact Management * - Contact operations * - Address book integration */ export * from './contact';