interface TVoid {
    $id?: string;
    $schema?: string;
    [Hint]?: string;
    [Kind]: "Void";
    [OptionalKind]?: string;
    [ReadonlyKind]?: string;
    default?: any;
    description?: string;
    examples?: any;
    params: unknown[];
    readOnly?: boolean;
    static: void;
    title?: string;
    type: "void";
    writeOnly?: boolean;
}

Hierarchy (view full)

Properties

$id?: string

Id for this schema

$schema?: string
[Hint]?: string
[Kind]: "Void"
[OptionalKind]?: string
[ReadonlyKind]?: string
default?: any

Default value for this schema

description?: string

Description of this schema

examples?: any

Example values matching this schema

params: unknown[]
readOnly?: boolean

Optional annotation for readOnly

static: void
title?: string

Title of this schema

type: "void"
writeOnly?: boolean

Optional annotation for writeOnly