mirror of
https://github.com/borbann-platform/srs-document.git
synced 2025-12-21 05:24:06 +01:00
13 lines
470 B
TypeScript
13 lines
470 B
TypeScript
import { Doc } from "prettier";
|
|
import * as Ast from "@unified-latex/unified-latex-types";
|
|
/**
|
|
* Format a sequence of Pgfkeys key-value pairs. `nodes` will be parsed
|
|
* by a grammar defining Pgfkeys
|
|
*/
|
|
export declare function printArgumentPgfkeys(nodes: Ast.Node[], options: {
|
|
openMark: string;
|
|
closeMark: string;
|
|
leadingComment?: Ast.Comment | null | undefined;
|
|
allowParenGroups?: boolean;
|
|
}): Doc;
|
|
//# sourceMappingURL=print-argument-pgfkeys.d.ts.map
|