@typia/website
    Preparing search index...

    Interface IFunction<Schema>

    interface IFunction<
        Schema extends
            OpenApi.IJsonSchema
            | OpenApiV3.IJsonSchema = OpenApi.IJsonSchema,
    > {
        async: boolean;
        deprecated?: boolean;
        description?: string;
        name: string;
        output: IOutput<Schema>
        | undefined;
        parameters: IJsonSchemaApplication.IParameter<Schema>[];
        summary?: string;
        tags?: string[];
    }

    Type Parameters

    • Schema extends OpenApi.IJsonSchema | OpenApiV3.IJsonSchema = OpenApi.IJsonSchema
    Index

    Properties

    async: boolean
    deprecated?: boolean
    description?: string
    name: string
    output: IOutput<Schema> | undefined
    summary?: string
    tags?: string[]