export type HookResolveIdCallStart = {
    action: 'HookResolveIdCallStart';
    importer: string | null;
    module_request: string;
    import_kind: string;
    plugin_name: string;
    /**
     * The index of the plugin in the plugin list. It's unique to each plugin.
     */
    plugin_id: number;
    /**
     * - `automatic` means the resolve call is triggered by the bundler automatically.
     * - `manual` means the resolve call is triggered manually by `this.resolve(...)`
     */
    trigger: 'automatic' | 'manual';
    call_id: string;
};
