UNPKG

@irwinproject/storybook-addon-tsdoc

Version:
14 lines (13 loc) 592 B
import { Nodely } from "./types"; /** * Just a convenience method to make the same bySyntax method reusable. * @param node * @returns */ export declare const sig: (node: Nodely) => string; /** * Once a full signature name is resolved the typing of the object will be necessary. This typing however will be different for different declaration type. As such I will be handling these similar to the SyntaxKind... I need a SyntaxKind switching function * @todo this is unecessary these functions arent public. * @param node */ export declare const getSignature: (node: Nodely) => string;