mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-07-03 05:38:26 +00:00
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
import type { ComputedRef, InjectionKey } from 'vue'
|
|
|
|
export interface CodeBlockContext {
|
|
code: ComputedRef<string>
|
|
}
|
|
|
|
export const CodeBlockKey: InjectionKey<CodeBlockContext> = Symbol('CodeBlock')
|