fix(typing): add coAuthor to form story interface
This commit is contained in:
parent
188b55724c
commit
8d162c8029
@ -20,6 +20,7 @@ export interface FormChapter {
|
|||||||
|
|
||||||
export interface FormStory {
|
export interface FormStory {
|
||||||
title: string;
|
title: string;
|
||||||
|
coAuthor: number | null;
|
||||||
chapters: FormChapter[];
|
chapters: FormChapter[];
|
||||||
ficmas?: number | null;
|
ficmas?: number | null;
|
||||||
challenge?: number | null;
|
challenge?: number | null;
|
||||||
@ -44,6 +45,7 @@ export const defaultChapter: FormChapter = {
|
|||||||
|
|
||||||
export const defaultStory: FormStory = {
|
export const defaultStory: FormStory = {
|
||||||
title: "",
|
title: "",
|
||||||
|
coAuthor: null,
|
||||||
chapters: [],
|
chapters: [],
|
||||||
ficmas: null,
|
ficmas: null,
|
||||||
challenge: null,
|
challenge: null,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user