UNPKG

@naxodev/gonx

Version:

Modern Nx plugin to use Go in a Nx workspace

9 lines (8 loc) 295 B
import { GoListType } from '../types/go-list-type'; /** * Parses a Go list (also support list with only one item). * * @param listType type of list to parse * @param content list to parse as a string */ export declare const parseGoList: (listType: GoListType, content: string) => string[];