mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
import { createContext } from '@builder.io/qwik'
|
|
|
|
export interface DocumentationCtx {
|
|
title: string
|
|
link?: string
|
|
list: { link: string; name: string }[]
|
|
}
|
|
|
|
export const GlobalStore =
|
|
createContext<DocumentationCtx[]>('documentation-site')
|