blob: 28ca0c40335035def15297401ac6f2ef099811e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
export type SanityBlockArray = {
_type: string;
children: any[];
markDefs?: any[] | undefined;
style?: string | undefined;
listItem?: string | undefined;
level?: number | undefined;
_key: string;
}[]
|