@vnodes/graphql
    Preparing search index...

    Type Alias ArgsOptions<T>

    ArgsOptions: BaseTypeOptions<T> & {
        deprecationReason?: string;
        description?: string;
        name?: string;
        type?: () => any;
    }

    Interface defining options that can be passed to @Args() decorator.

    Type Parameters

    • T = any

    Type Declaration

    • OptionaldeprecationReason?: string

      Argument deprecation reason (if deprecated).

    • Optionaldescription?: string

      Description of the argument.

    • Optionalname?: string

      Name of the argument.

    • Optionaltype?: () => any

      Function that returns a reference to the arguments host class.