@rdfine/owl
Version:
> ## @rdfine/owl > ### Generated JavaScript types for OWL Web Ontology Language
13 lines (12 loc) • 360 B
TypeScript
import type { RdfineEnvironment, Vocabulary } from '@tpluscode/rdfine/environment';
import * as Owl from './index.js';
type OwlVocabulary = Vocabulary<typeof Owl>;
declare module '@tpluscode/rdfine/environment' {
interface Rdfine {
owl: OwlVocabulary;
}
}
export declare class OwlFactory {
init(this: RdfineEnvironment): void;
}
export {};