setPropDescription.d.ts 388 B

1234
  1. import type { NodePath } from '@babel/traverse';
  2. import type Documentation from '../Documentation.js';
  3. import type { ObjectMethod, ObjectProperty, ObjectTypeProperty, TSPropertySignature } from '@babel/types';
  4. export default function setPropDescription(documentation: Documentation, propertyPath: NodePath<ObjectMethod | ObjectProperty | ObjectTypeProperty | TSPropertySignature>): void;