25 lines
591 B
TypeScript
25 lines
591 B
TypeScript
import type { EntrySkeletonType } from "contentful";
|
|
|
|
export type rowJutify =
|
|
| "start"
|
|
| "end"
|
|
| "center"
|
|
| "between"
|
|
| "around"
|
|
| "evenly";
|
|
export type rowAlignItems = "start" | "end" | "center" | "baseline" | "stretch";
|
|
|
|
export interface CF_Content {
|
|
row1JustifyContent: rowJutify;
|
|
row1AlignItems: rowAlignItems;
|
|
row1Content: EntrySkeletonType<any>[];
|
|
|
|
row2JustifyContent: rowJutify;
|
|
row2AlignItems: rowAlignItems;
|
|
row2Content: EntrySkeletonType<any>[];
|
|
|
|
row3JustifyContent: rowJutify;
|
|
row3AlignItems: rowAlignItems;
|
|
row3Content: EntrySkeletonType<any>[];
|
|
}
|