diff options
Diffstat (limited to 'src/ts/types/app.ts')
| -rw-r--r-- | src/ts/types/app.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ts/types/app.ts b/src/ts/types/app.ts index 2c9a291..3edc8a0 100644 --- a/src/ts/types/app.ts +++ b/src/ts/types/app.ts @@ -1,7 +1,7 @@ import { NextPage } from 'next'; import { AppProps } from 'next/app'; import { ReactElement, ReactNode } from 'react'; -import { PostBy } from './articles'; +import { PostBy, TotalArticles } from './articles'; import { AllPostsSlug, RawPostsList } from './blog'; import { CommentData, CreateComment } from './comments'; import { ContactData, SendEmail } from './contact'; @@ -48,10 +48,11 @@ export type RequestType = | AllThematicsSlug | CreateComment | PostBy - | TopicBy - | ThematicBy | RawPostsList - | SendEmail; + | SendEmail + | ThematicBy + | TopicBy + | TotalArticles; //============================================================================== // Globals |
