UNPKG

sb-mig

Version:

CLI to rule the world. (and handle stuff related to Storyblok CMS)

16 lines (15 loc) 356 B
/** * Simple test function with no dependencies to verify ESM/CJS interop */ export declare function testConnection(): { success: boolean; message: string; timestamp: string; }; /** * Async test function to verify async imports work */ export declare function testAsyncConnection(): Promise<{ success: boolean; message: string; }>;