Interface ManifestKind<ManifestTypes>

interface ManifestKind<ManifestTypes> {
    alias: string;
    manifest: Partial<ManifestTypes>;
    matchKind: string;
    matchType: string;
    type: "kind";
}

Type Parameters

  • ManifestTypes

Properties

alias: string
manifest: Partial<ManifestTypes>

Provide pre defined properties for the extension manifest. Define the type-property and other properties you like to preset for implementations of this kind.

{
* type: 'section',
* weight: 123,
* }
@TJS-type object
matchKind: string
matchType: string
type: "kind"
""