UNPKG

@prismicio/types-internal

Version:
12 lines (8 loc) 282 B
import * as t from "io-ts" import { CompositeSliceType } from "./CompositeSlice" import { SharedSliceType } from "./SharedSlice" export const SlicesTypes = t.keyof({ [CompositeSliceType]: null, [SharedSliceType]: null, }) export type SlicesTypes = t.TypeOf<typeof SlicesTypes>