/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CopyPageRequestDestination { type: "space" | "existing_page" | "parent_page" | "parent_content"; /** * The space key for `space` type, and content id for `parent_page`, `parent_content`, and `existing_page` */ value: string; } //# sourceMappingURL=CopyPageRequestDestination.d.ts.map