feat: move api-client as core's monorepo

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei
2022-12-20 21:26:21 +08:00
parent 06ab476c8a
commit a281f45ab4
101 changed files with 7990 additions and 297 deletions

View 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
}