@zsnout/ithkuil
Version:
A set of tools which can generate and parse romanized Ithkuil text and which can generate Ithkuil script from text and JSON data.
17 lines (16 loc) • 541 B
TypeScript
/**
* Shows a spread of several items.
*
* @param props Properties modifying the spread.
* @returns An `SVGGElement` containing all the items.
*/
export declare function Spread(props: {
/** The number of columns to show. */
readonly columns?: number | undefined;
/** The items to show. */
readonly items: SVGElement[];
/** The horizontal separation between the items. */
readonly x?: number | undefined;
/** The vertical separation between the items. */
readonly y?: number | undefined;
}): SVGGElement;