mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 19:49:16 +00:00
17 lines
355 B
TypeScript
17 lines
355 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')
|