global.d.ts 118 B

1234567
  1. declare type NovelPageProps<T = {}> = {
  2. statusCode?: number;
  3. } & T;
  4. declare type Docs = {
  5. [key: string]: any;
  6. };