UNPKG

@prismicio/types-internal

Version:
7 lines (6 loc) 372 B
import type { CompositeSlice } from "./CompositeSlice"; import type { LegacySlice } from "./LegacySlice"; import type { SharedSlice } from "./SharedSlice"; import type { SharedSliceRef } from "./SharedSliceRef"; export declare type DynamicSlice = CompositeSlice | LegacySlice | SharedSliceRef; export declare type StaticSlice = CompositeSlice | LegacySlice | SharedSlice;