UNPKG

polen

Version:

A framework for delightful GraphQL developer portals

17 lines 711 B
import type { GrafaidOld } from '#lib/grafaid-old/index'; import type { Target } from '../target.js'; export declare const Placement: { readonly Before: "before"; readonly After: "after"; readonly Over: "over"; }; export type Placement = (typeof Placement)[keyof typeof Placement]; export interface DescriptionAugmentation { type: `description`; on: Target; placement: Placement; content: string; } export declare const applyDescriptionContent: (type: GrafaidOld.Groups.Describable, augmentation: DescriptionAugmentation) => void; export declare const apply: (schema: GrafaidOld.Schema.Schema, augmentation: DescriptionAugmentation) => void; //# sourceMappingURL=description.d.ts.map