2024-11-03 10:21:44 +00:00
|
|
|
import type BaseCollection from "./baseCollection";
|
|
|
|
|
|
|
|
export default interface Article extends BaseCollection {
|
2024-11-02 11:47:07 +00:00
|
|
|
content: Array<{ type: string; children: Array<{ type: string; text: string }>; level?: number }>;
|
|
|
|
}
|