Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
557 B
Plaintext
15 lines
557 B
Plaintext
import type { PayloadComponent } from '../../../config/types.js';
|
|
import type { Imports, InternalImportMap } from '../index.js';
|
|
/**
|
|
* Adds a payload component to the import map.
|
|
*/
|
|
export declare function addPayloadComponentToImportMap({ importMap, importMapToBaseDirPath, imports, payloadComponent, }: {
|
|
importMap: InternalImportMap;
|
|
importMapToBaseDirPath: string;
|
|
imports: Imports;
|
|
payloadComponent: PayloadComponent;
|
|
}): {
|
|
path: string;
|
|
specifier: string;
|
|
} | null;
|
|
//# sourceMappingURL=addPayloadComponentToImportMap.d.ts.map |