CSVW RDF Convertor - Documentation
    Preparing search index...
    Index

    Constructors

    Properties

    descriptor: Signal<any> = ...
    filesFG: FormGroup<any> = ...
    form: FormGroup<
        {
            files: FormGroup<
                {
                    configFile: FormControl<File>;
                    mainFile: FormControl<File>;
                    mainFileUrl: FormControl<string>;
                    otherFiles: FormControl<File[]>;
                },
            >;
            format: FormGroup<
                {
                    format: FormControl<RDFSerialization>;
                    ttl: FormGroup<
                        {
                            baseIri: FormControl<string>;
                            lookupPrefixes: FormControl<boolean>;
                            prefixes: FormControl<Record<string, string>>;
                        },
                    >;
                },
            >;
            options: FormGroup<
                {
                    baseIri: FormControl<string>;
                    minimal: FormControl<boolean>;
                    pathOverrides: FormArray<FormControl<[string | RegExp, string]>>;
                    templateIris: FormControl<boolean>;
                },
            >;
        },
    > = ...
    formatFG: FormGroup<any> = ...
    optionsFG: FormGroup<any> = ...
    router: Router = ...
    service: C2RService = ...

    Methods