feat: move api-client as core's monorepo
Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
20
packages/api-client/models/page.ts
Normal file
20
packages/api-client/models/page.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { TextBaseModel } from './base'
|
||||
|
||||
export enum EnumPageType {
|
||||
'md' = 'md',
|
||||
'html' = 'html',
|
||||
'frame' = 'frame',
|
||||
}
|
||||
export interface PageModel extends TextBaseModel {
|
||||
created: string
|
||||
|
||||
slug: string
|
||||
|
||||
subtitle?: string
|
||||
|
||||
order?: number
|
||||
|
||||
type?: EnumPageType
|
||||
|
||||
options?: object
|
||||
}
|
||||
Reference in New Issue
Block a user