Files
bot-whatsapp/packages/docs/src/contexts/index.tsx
2022-12-28 10:21:10 +01:00

18 lines
359 B
TypeScript

import { createContext } from '@builder.io/qwik'
export interface DocumentationCtx {
title: string
link?: string
list: { link: string; name: string }[]
}
export interface User {
id: number
login: string
html_url: string
avatar_url: string
}
export const GlobalStore =
createContext<DocumentationCtx[]>('documentation-site')