@prismicio/types-internal 3.4.0-alpha.7 → 3.4.0-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -595,6 +595,7 @@ export declare const TableRow: t.ExactC<t.TypeC<{
|
|
|
595
595
|
}>]>>>;
|
|
596
596
|
}>>]>>;
|
|
597
597
|
}>>;
|
|
598
|
+
export declare type TableRow = t.TypeOf<typeof TableRow>;
|
|
598
599
|
export declare const tableContentLegacyCodec: t.ExactC<t.TypeC<{
|
|
599
600
|
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
600
601
|
type: t.LiteralC<"tableRow">;
|
package/package.json
CHANGED
|
@@ -29,6 +29,7 @@ export const TableRow = t.strict({
|
|
|
29
29
|
type: t.literal("tableRow"),
|
|
30
30
|
content: t.array(t.union([TableHeaderCell, TableDataCell])),
|
|
31
31
|
})
|
|
32
|
+
export type TableRow = t.TypeOf<typeof TableRow>
|
|
32
33
|
|
|
33
34
|
export const tableContentLegacyCodec = t.strict({
|
|
34
35
|
content: t.array(TableRow),
|