import { ContentRelationshipField } from "../value/contentRelationship.js"; import { PrismicDocument } from "../value/document.js"; import { PrismicMigrationDocument } from "./Document.js"; //#region src/types/migration/ContentRelationship.d.ts type ValueOrThunk = T | (() => Promise | T); /** A content relationship field in a migration. */ type MigrationContentRelationship = ValueOrThunk | undefined> | (Pick & { id: ValueOrThunk | undefined>; }); //#endregion export { MigrationContentRelationship }; //# sourceMappingURL=ContentRelationship.d.ts.map