Variable ManifestationConst

Manifestation: IntersectionC<[TypeC<{
    type: UnionC<[LiteralC<string>, ArrayC<LiteralC<string>>]> | UnionC<[ArrayC<UnionC<[LiteralC<string>, LiteralC<string>, ...LiteralC<string>[]]>>, UnionC<[LiteralC<string>, LiteralC<string>, ...LiteralC<string>[]]>]>;
}>, PartialC<{
    id: StringC;
    service: UrlFromStringC;
    url: UrlFromStringC;
}>]> = ...

A fabio:Manifestation, which may be included in an Output.

Example

import { ManifestationT, Manifestation } from '@docmaps/sdk';
import { Validation } from 'io-ts';

const A: Validation<ManifestationT> = Manifestation.decode({
type: 'web-page',
id: 'https://docmaps-project.github.io/ex/manifestation',
service: 'https://docmaps-project.github.io/ex/manifestation/service',
url: 'https://docmaps-project.github.io/ex/manifestation/url'
});

Since

0.1.0

Generated using TypeDoc