| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- export interface AIPPTCover {
- type: 'cover'
- data: {
- title: string
- text: string
- }
- }
- export interface AIPPTContents {
- type: 'contents'
- data: {
- items: string[]
- }
- offset?: number
- }
- export interface AIPPTTransition {
- type: 'transition'
- data: {
- title: string
- text: string
- }
- }
- export interface AIPPTContent {
- type: 'content'
- data: {
- title: string
- items: {
- title: string
- text: string
- }[]
- },
- offset?: number
- }
- export interface AIPPTEnd {
- type: 'end'
- }
- export type AIPPTSlide = AIPPTCover | AIPPTContents | AIPPTTransition | AIPPTContent | AIPPTEnd
|