| export { h as handleValueOrFn } from '../handleValueOrFn-D2uLOn6s.js'; |
|
|
| type Callback = (val?: any) => void; |
| |
| |
| |
| |
| |
| |
| declare const createDeferredPromise: () => { |
| promise: Promise<unknown>; |
| resolve: Callback; |
| reject: Callback; |
| }; |
|
|
| |
| |
| |
| |
| declare function allSettled<T>(iterable: Iterable<Promise<T>>): Promise<({ |
| status: 'fulfilled'; |
| value: T; |
| } | { |
| status: 'rejected'; |
| reason: any; |
| })[]>; |
|
|
| |
| |
| |
| declare function isStaging(frontendApi: string): boolean; |
|
|
| declare const logErrorInDevMode: (message: string) => void; |
|
|
| declare const noop: (..._args: any[]) => void; |
|
|
| declare const isDevelopmentEnvironment: () => boolean; |
| declare const isTestEnvironment: () => boolean; |
| declare const isProductionEnvironment: () => boolean; |
|
|
| |
| |
| |
| |
| |
| declare const fastDeepMergeAndReplace: (source: Record<any, any> | undefined | null, target: Record<any, any> | undefined | null) => void; |
| declare const fastDeepMergeAndKeep: (source: Record<any, any> | undefined | null, target: Record<any, any> | undefined | null) => void; |
|
|
| export { allSettled, createDeferredPromise, fastDeepMergeAndKeep, fastDeepMergeAndReplace, isDevelopmentEnvironment, isProductionEnvironment, isStaging, isTestEnvironment, logErrorInDevMode, noop }; |
|
|