UNPKG

barrelsby

Version:

Automatic TypeScript barrels for your entire code base

6 lines (4 loc) 165 B
export type SemicolonCharacter = ';' | ''; export function getSemicolonCharacter(omitSemicolon: boolean): SemicolonCharacter { return omitSemicolon ? '' : ';'; }