/** * Vocabulary 统一导出 * * 使用方式: * ```typescript * import { UDFS, DCTerms, LDP } from '@/vocab'; * * // 使用 Class * const type = UDFS.Credential; // 'https://undefineds.co/ns#Credential' * * // 使用 Property * const prop = UDFS.apiKey; // 'https://undefineds.co/ns#apiKey' * * // 动态构建 URI * const custom = UDFS('CustomTerm'); // 'https://undefineds.co/ns#CustomTerm' * * // 用于本地 adapter schema * const predicate = UDFS('systemPrompt'); * ``` */ export { UDFS, UDFS_NAMESPACE } from './udfs'; export { DCTerms, LDP, Schema, RDF, RDFS, XSD, FOAF, ACL, Solid, SIOC, Meeting, WF } from './external';