export interface AddWikiPageParams { /** Project ID プロジェクトのID */ projectId: number; /** Page Name ページ名 */ name: string; /** Content ページの内容 */ content: string; /** True make to notify by Email ページの追加をメールで通知する場合はtrue */ mailNotify?: string; }