UNPKG

@nu-art/jira

Version:
33 lines (32 loc) 762 B
import { JiraQuery } from "./JiraModule"; export type JiraIssueText = string | { href: string; text: string; }; declare function createText(...texts: JiraIssueText[]): { type: string; version: number; content: { type: string; content: ({ type: string; text: string; marks?: undefined; } | { type: string; text: string; marks: { type: string; attrs: { href: string; }; }[]; })[]; }[]; }; declare function buildJQL(query: JiraQuery): string; export declare const JiraUtils: { createText: typeof createText; buildJQL: typeof buildJQL; }; export {};