返回 presentation-ai
1 import { type PlateSlide } from "@/components/notebook/presentation/utils/parser";
2
3 export type ContentAlignment = "start" | "center" | "end";
4
5 export type SlideUpdate = Omit<PlateSlide, "id">;
6
6 lines TYPESCRIPT