You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
390 B

import { ExpoConfig, Hook, HookArguments, HookType } from '@expo/config';
export declare type LoadedHook = Hook & {
_fn: (input: HookArguments) => any;
};
export declare function prepareHooks(hooks: ExpoConfig['hooks'], hookType: HookType, projectRoot: string): LoadedHook[];
export declare function runHook(hook: LoadedHook, hookOptions: Omit<HookArguments, 'config'>): Promise<void>;