import type { InjectionKey, Ref } from "vue"; import { ref } from "vue"; import { createLicenseContextValue, type LicenseContextValue, } from "@copilotkit/shared"; export type { LicenseContextValue }; export { createLicenseContextValue }; export const LicenseContextKey: InjectionKey> = Symbol("LicenseContext"); export function createDefaultLicenseRef(): Ref { return ref(createLicenseContextValue(null)); }