diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-05-03 16:51:22 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-05-03 16:51:22 +0200 | 
| commit | 83a029084f1bbfd78b7099d9bea3371d4533c6d9 (patch) | |
| tree | f99854e4cb430ccbdb725cb2e287423f80cb9791 /mdx.d.ts | |
| parent | 732d0943f8041d76262222a092b014f2557085ef (diff) | |
chore: add a LegalNotice page
Diffstat (limited to 'mdx.d.ts')
| -rw-r--r-- | mdx.d.ts | 10 | 
1 files changed, 3 insertions, 7 deletions
| @@ -1,13 +1,9 @@  declare module '*.mdx' { +  import { MDXData, MDXPageMeta, MDXProjectMeta } from '@ts/types/mdx';    import { MDXProps } from 'mdx/types'; -  import { Meta } from '@ts/types/app';    let MDXComponent: (props: MDXProps) => JSX.Element;    export default MDXComponent; -  export const cover: string; -  export const image: string; -  export const intro: string; -  export const meta: Meta; -  export const pdf: string; -  export const seo: { title: string; description: string }; +  export const data: MDXData; +  export const meta: MDXPageMeta | MDXProjectMeta;  } | 
