dts-element-fp
Version:
typescript definition generator for functional programming
15 lines (14 loc) • 593 B
TypeScript
import * as dts from 'dts-element';
export interface CreateSelectableSignaturesOptions {
get_selectable_kind_name?: () => string;
get_selectable_selector_name?: () => string;
}
export interface CreateSelectableSignaturesInternalOptions extends CreateSelectableSignaturesOptions {
/**
* - normal: `undefined`
* - various: `string`
*/
group?: string;
is_placeholder: (value: dts.IType) => boolean;
}
export declare function create_selectable_signatures(signatures: dts.IObjectMember[], options: CreateSelectableSignaturesInternalOptions): dts.IObjectMember[];