UNPKG

@notadd/graphql

Version:

notadd core none dependence

26 lines (25 loc) 1.24 kB
export interface QueryOptions { path: string; } export declare const QueryMetadataKey = "@notadd/graphql QueryMetadataKey"; export declare const Query: import("../../core/lib/decorator").Decorator<any, any>; export interface MutationOptions { path: string; } export declare const MutationMetadataKey = "@notadd/graphql MutationMetadataKey"; export declare const Mutation: import("../../core/lib/decorator").Decorator<string | MutationOptions, string | MutationOptions>; export interface SubscriptionOptions { path: string; } export declare const SubscriptionMetadataKey = "@notadd/graphql SubscriptionMetadataKey"; export declare const Subscription: import("../../core/lib/decorator").Decorator<string | SubscriptionOptions, string | SubscriptionOptions>; export interface ScalarOptions { name: string; description: string; } export declare const ScalarMetadataKey = "@notadd/graphql ScalarMetadataKey"; export declare const Scalar: import("../../core/lib/decorator").Decorator<ScalarOptions, ScalarOptions>; export interface DirectiveOptions { } export declare const DirectiveMetadataKey = "@notadd/graphql DirectiveMetadataKey"; export declare const Directive: import("../../core/lib/decorator").Decorator<any, any>;